Invite Links
Get One Invite Link
General
Server Side SDKs
Core API
- Companies
- Invite Links
- Integrations
- Sync
- Jobs
- Passthrough
Unified API
- Accounting
Invite Links
Get One Invite Link
Retrieve one invite link from the database based on the ID.
GET
/
invite_link
/
{invite_link_id}
curl --request GET \
--url https://api.rootfi.dev/invite_link/{invite_link_id} \
--header 'api_key: <api-key>'
{
"data": {
"rootfi_id": 123,
"rootfi_created_at": "2021-01-01T00:00:00Z",
"rootfi_updated_at": "2021-01-01T00:00:00Z",
"rootfi_company_id": 1234,
"rootfi_organisation_id": 12,
"metadata": null,
"invite_link_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b",
"integrations": [
"ZOHO_BOOKS"
],
"Companies": {
"rootfi_id": 1212,
"rootfi_created_at": "2021-01-01T00:00:00Z",
"rootfi_updated_at": "2021-01-01T00:00:00Z",
"rootfi_company_id": 1234,
"rootfi_organisation_id": 12,
"name": "Rootfi Test Company",
"sync_enabled": true,
"Connections": [
{
"rootfi_id": "1234_ZOHO_BOOKS",
"integration_type": "ZOHO BOOKS",
"rootfi_company_id": 123,
"status": "HEALTHY"
}
],
"Organisation": {
"rootfi_id": 123,
"name": "Test Organisation",
"Integrations": [
{
"rootfi_id": null,
"integration_type": "ZOHO BOOKS",
"is_disabled": false
}
],
"sync_config": [
{
"enabled": true,
"interval": 2,
"frequency": "DAILY",
"data_model": "ACCOUNTS",
"initial_fetch": true
}
]
}
}
},
"request_timestamp": "2021-01-01T00:00:00Z",
"response_timestamp": "2021-01-01T00:00:00Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}
An invite link contains API requests for generating and managing invite links, which can be used to connect end users to their preferred accounting platforms.
curl --request GET \
--url https://api.rootfi.dev/invite_link/{invite_link_id} \
--header 'api_key: <api-key>'
Authorizations
Path Parameters
The ID of the invite link you want to retrieve.
Response
200 - application/json
Response object for the get one invite link endpoint.
curl --request GET \
--url https://api.rootfi.dev/invite_link/{invite_link_id} \
--header 'api_key: <api-key>'
{
"data": {
"rootfi_id": 123,
"rootfi_created_at": "2021-01-01T00:00:00Z",
"rootfi_updated_at": "2021-01-01T00:00:00Z",
"rootfi_company_id": 1234,
"rootfi_organisation_id": 12,
"metadata": null,
"invite_link_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b",
"integrations": [
"ZOHO_BOOKS"
],
"Companies": {
"rootfi_id": 1212,
"rootfi_created_at": "2021-01-01T00:00:00Z",
"rootfi_updated_at": "2021-01-01T00:00:00Z",
"rootfi_company_id": 1234,
"rootfi_organisation_id": 12,
"name": "Rootfi Test Company",
"sync_enabled": true,
"Connections": [
{
"rootfi_id": "1234_ZOHO_BOOKS",
"integration_type": "ZOHO BOOKS",
"rootfi_company_id": 123,
"status": "HEALTHY"
}
],
"Organisation": {
"rootfi_id": 123,
"name": "Test Organisation",
"Integrations": [
{
"rootfi_id": null,
"integration_type": "ZOHO BOOKS",
"is_disabled": false
}
],
"sync_config": [
{
"enabled": true,
"interval": 2,
"frequency": "DAILY",
"data_model": "ACCOUNTS",
"initial_fetch": true
}
]
}
}
},
"request_timestamp": "2021-01-01T00:00:00Z",
"response_timestamp": "2021-01-01T00:00:00Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}