Skip to main content
GET
/
api
/
zoho
/
integrations
List all Zoho integrations
curl --request GET \
  --url https://api.g-tateth.com/api/zoho/integrations \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "tenantId": "<string>",
      "accountId": "<string>",
      "accountName": "<string>",
      "accountEmail": "<string>",
      "apiDomain": "<string>",
      "isActive": true,
      "lastSyncAt": "2023-11-07T05:31:56Z",
      "syncStatus": "idle",
      "syncProgress": {
        "totalRecords": 123,
        "processedRecords": 123,
        "currentModule": "<string>",
        "errors": [
          "<string>"
        ]
      },
      "importSettings": {
        "importContacts": true,
        "importDeals": true,
        "importTickets": true,
        "importNotes": true,
        "importActivities": true,
        "preserveIds": true
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: Bearer sk_live_... or Bearer sk_test_...

Response

List of Zoho integrations

success
boolean
Example:

true

data
object[]