GET
/
unified
/
crm
/
account
curl --request GET \
  --url https://api.openint.dev/v0/unified/crm/account \
  --header 'x-apikey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "next_cursor": "<string>",
  "has_next_page": true,
  "items": [
    {
      "id": "<string>",
      "updated_at": "<string>",
      "raw_data": {},
      "name": "<string>",
      "is_deleted": true,
      "website": "<string>",
      "industry": "<string>",
      "number_of_employees": 123,
      "owner_id": "<string>",
      "created_at": "<string>",
      "description": "Integration API",
      "last_activity_at": "<string>",
      "addresses": [
        {
          "address_type": "primary",
          "city": "<string>",
          "country": "<string>",
          "postal_code": "<string>",
          "state": "<string>",
          "street_1": "<string>",
          "street_2": "<string>"
        }
      ],
      "phone_numbers": [
        {
          "phone_number": "<string>",
          "phone_number_type": "primary"
        }
      ],
      "lifecycle_stage": "subscriber",
      "last_modified_at": "<string>"
    }
  ]
}

Authorizations

x-apikey
string
header
required
x-connection-id
string
header
required

Query Parameters

sync_mode
enum<string>
Available options:
full,
incremental
cursor
string | null
page_size
number

Response

200
application/json
Successful response
has_next_page
boolean
required
items
object[]
required
next_cursor
string | null