Skip to main content
GET
/
api
/
zoho
/
integrations
/
{id}
/
import
/
status
Get Zoho import status
curl --request GET \
  --url https://api.g-tateth.com/api/zoho/integrations/{id}/import/status \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "data": {
    "status": "in_progress",
    "progress": {
      "total": 1000,
      "processed": 500,
      "successful": 495,
      "failed": 5,
      "skipped": 0
    },
    "results": {
      "customersCreated": 123,
      "conversationsCreated": 123,
      "messagesCreated": 123,
      "errors": [
        {}
      ]
    },
    "startedAt": "2023-11-07T05:31:56Z",
    "completedAt": "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

Import status retrieved successfully

success
boolean
Example:

true

data
object