PUT
/
company
/
{company_id}

curl --request PUT \
  --url https://integrate.rootfi.dev/company/{company_id} \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api_key>' \
  --data '{
  "name": "RootFi Test Company"
}'
{
  "data": {
    "rootfi_id": 1234,
    "rootfi_created_at": "2021-06-01T00:00:00.000Z",
    "rootfi_updated_at": "2021-06-01T00:00:00.000Z",
    "rootfi_organisation_id": 12,
    "name": "RootFi Test Company",
    "sync_enabled": true,
    "InviteLinks": {
      "invite_link_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
    },
    "Connections": [
      {
        "status": "HEALTHY",
        "integration_type": "ZOHO_BOOKS",
        "last_synced": "2021-06-01T00:00:00.000Z",
        "rate_limits": {
          "max_rate_limit": 10000,
          "resets_in_date": "2021-01-01T00:00:00Z",
          "remaining_rate_limit": 10000
        },
        "tally_last_active_at": null,
        "sync_status": "IDLE"
      }
    ]
  },
  "request_timestamp": "2021-06-01T00:00:00.000Z",
  "response_timestamp": "2021-06-01T00:00:00.000Z",
  "request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}

curl --request PUT \
  --url https://integrate.rootfi.dev/company/{company_id} \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api_key>' \
  --data '{
  "name": "RootFi Test Company"
}'

Authorizations

api_key
string
header
required

Path Parameters

company_id
number
required

The ID of the company to update.

Body

application/json
name
string
required

Name of the company you are sending this invite link to. Useful identifier for you to internally reference this company. Can be changed later.

Example:

"RootFi Test Company"

Response

200 - application/json

The response of the update company endpoint.

request_timestamp
string
required

The time at which the request was received by the server

response_timestamp
string
required

The time at which the response was sent by the server

request_id
string
required

The unique ID of the request

data
object
required

One company response object