Skip to main content
GET
/
v1
/
integrations
/
accounts
Get accounts
curl --request GET \
  --url https://api.example.com/v1/integrations/accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "externalId": "<string>",
    "addresses": [
      "<unknown>"
    ],
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "latitude": 123,
    "longitude": 123,
    "phoneNumbers": [
      "<string>"
    ],
    "emailAddresses": [
      "<string>"
    ],
    "name": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Get accounts

id
string
required
externalId
string
required

The ID of the account in the external system (e.g. Salesforce)

addresses
null[]
required
createdAt
string
required

The date the account was created

updatedAt
string
required

The date the account was last updated

latitude
number
longitude
number
phoneNumbers
string[]
emailAddresses
string[]
name
string