Integrations
Get All Integrations
General
Server Side SDKs
Core API
- Companies
- Invite Links
- Integrations
- Sync
- Jobs
- Passthrough
Unified API
- Accounting
Integrations
Get All Integrations
Retrieve all integrations from the database.
GET
/
integrations
curl --request GET \
--url https://api.rootfi.dev/integrations \
--header 'api_key: <api-key>'
--data '{"type": "ALL"}'
{
"data": {
"data": [
{
"integration_type": "ZOHO_BOOKS",
"rootfi_id": 1234,
"client_id": "gfdsxcvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"client_secret": "jnokmwvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"is_disabled": false,
"is_rootfi_identity": true,
"count": 1
},
{
"integration_type": "ZOHO_BOOKS",
"rootfi_id": 1234,
"client_id": "gfdsxcvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"client_secret": "jnokmwvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"is_disabled": true,
"is_rootfi_identity": false,
"count": 1
}
],
"enabled_integrations": 123,
"disabled_integrations": 12
},
"request_timestamp": "2021-08-10T15:00:00.000Z",
"response_timestamp": "2021-08-10T15:00:00.000Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}
curl --request GET \
--url https://api.rootfi.dev/integrations \
--header 'api_key: <api-key>'
--data '{"type": "ALL"}'
Authorizations
Query Parameters
The type of integrations to return
Available options:
ALL
, DISABLED
, ENABLED
Response
200 - application/json
Response for retrieving all integrations endpoint.
curl --request GET \
--url https://api.rootfi.dev/integrations \
--header 'api_key: <api-key>'
--data '{"type": "ALL"}'
{
"data": {
"data": [
{
"integration_type": "ZOHO_BOOKS",
"rootfi_id": 1234,
"client_id": "gfdsxcvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"client_secret": "jnokmwvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"is_disabled": false,
"is_rootfi_identity": true,
"count": 1
},
{
"integration_type": "ZOHO_BOOKS",
"rootfi_id": 1234,
"client_id": "gfdsxcvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"client_secret": "jnokmwvghfredcvbhgtfdcasdfghjertyuyhbdcvjnokmwertyu.0ikjuyhgfdsxcvbnm",
"is_disabled": true,
"is_rootfi_identity": false,
"count": 1
}
],
"enabled_integrations": 123,
"disabled_integrations": 12
},
"request_timestamp": "2021-08-10T15:00:00.000Z",
"response_timestamp": "2021-08-10T15:00:00.000Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}