Skip to main content
GET
/
v1
/
crm
/
contacts
List CRM contacts
curl --request GET \
  --url https://unify.bundleup.io/v1/crm/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'BU-Connection-ID: <bu-connection-id>'
{
  "response": {
    "data": [
      {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>"
      }
    ],
    "metadata": {
      "next": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

API Key for authentication

BU-Connection-ID
string
required

Connection ID for the integration

Query Parameters

params
string

Optional passthrough parameter

Example:

"{\"team_id\":\"12345\"}"

limit
number
default:100

Number of companies to return

Required range: 1 <= x <= 100
after
string

Cursor for pagination

include_raw
enum<string> | null
default:false

Whether to include raw response from the provider

Available options:
true,
false

Response

Successful Response For contacts

response
object
required