PUT
/
core
/
companies
/
{company_id}
curl --request PUT \
  --url https://api.rootfi.dev/v3/core/companies/{company_id} \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '{
  "name": "<string>",
  "partner_id": "<string>",
  "sync_config": [
    {
      "enabled": true,
      "interval": 1,
      "frequency": "DAILY",
      "data_model": "ACCOUNTS",
      "category": "ACCOUNTING",
      "scope_access": {
        "READ": true,
        "CREATE": true,
        "UPDATE": true,
        "DELETE": true
      },
      "sync_from": "2023-11-07T05:31:56Z",
      "custom_fields": [
        "<string>"
      ]
    }
  ]
}'
{
  "data": [
    {
      "rootfi_id": 123,
      "rootfi_created_at": "2023-11-07T05:31:56Z",
      "rootfi_updated_at": "2023-11-07T05:31:56Z",
      "name": "Rootfi",
      "partner_id": "<string>",
      "invite_link": {
        "rootfi_id": 123,
        "rootfi_created_at": "2023-11-07T05:31:56Z",
        "rootfi_updated_at": "2023-11-07T05:31:56Z",
        "invite_link_id": "1",
        "integrations": [
          "ZOHO_BOOKS"
        ],
        "integration_categories": [
          "ACCOUNTING"
        ]
      },
      "connections": [
        {
          "rootfi_id": 123,
          "rootfi_created_at": "2023-11-07T05:31:56Z",
          "rootfi_updated_at": "2023-11-07T05:31:56Z",
          "integration_type": "ZOHO_BOOKS",
          "category": "ACCOUNTING",
          "connection_status": "HEALTHY",
          "sync_status": "IDLE",
          "sync_resume_at": "2023-11-07T05:31:56Z",
          "last_synced": "2023-11-07T05:31:56Z",
          "rate_limits": {
            "counters": {},
            "lastReset": {},
            "maxLimits": {}
          },
          "tally_last_active_at": "2023-11-07T05:31:56Z",
          "zoho_sub_calls_enabled": false,
          "sync_config": {
            "enabled": true,
            "interval": 1,
            "frequency": "DAILY",
            "data_model": "ACCOUNTS",
            "category": "ACCOUNTING",
            "scope_access": {
              "READ": true,
              "CREATE": true,
              "UPDATE": true,
              "DELETE": true
            },
            "sync_from": "2023-11-07T05:31:56Z",
            "custom_fields": [
              "<string>"
            ]
          }
        }
      ],
      "activity_log": [
        {
          "rootfi_id": 123,
          "rootfi_created_at": "2023-11-07T05:31:56Z",
          "rootfi_updated_at": "2023-11-07T05:31:56Z",
          "activity_type": "ORG_CREATED"
        }
      ]
    }
  ],
  "next": "<string>"
}

Authorizations

api_key
string
header
required

Path Parameters

company_id
integer
required

The ID of the company to update

Body

application/json
The body of the company to update

The data of the company endpoint

name
string | null

Name of the company

partner_id
string | null

Unique identifier in your system.

sync_config
object[] | null

The sync configuration of the connection

Response

200
application/json

The data of the company endpoint

data
object[]
required

The data of the company endpoint

The data of the company endpoint

next
string | null

The next page of objects to retrieve