GET
/
api
/
end_users
/
{heron_id}
/
crm_sync
curl --request GET \
  --url https://app.herondata.io/api/end_users/{heron_id}/crm_sync \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "crm_record_url": "<string>",
    "error_message": "<string>",
    "heron_id": "<string>",
    "name": "<string>",
    "occurred_at": "2023-11-07T05:31:56Z",
    "provider": "<string>",
    "result": "success"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

heron_id
string
required

Response

200 - application/json
The list of CRM events that occurred for this end user
crm_record_url
string | null
error_message
string | null
heron_id
string
name
string
occurred_at
string
provider
string | null
result
enum<string>
Available options:
success,
failure