Skip to main content
GET
/
api
/
zoho
/
integrations
/
{id}
Get Zoho integration details
curl --request GET \
  --url https://api.g-tateth.com/api/zoho/integrations/{id} \
  --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_...

Path Parameters

id
string
required

Integration ID (obtained from GET /api/zoho/integrations after OAuth connection)

Response

Integration details

success
boolean
Example:

true

data
object