Skip to main content
GET
/
api
/
board
/
{boardId}
/
{cardId}
/
contacts
Get contacts linked to a card
curl --request GET \
  --url https://core-api.getaptly.com/api/board/{boardId}/{cardId}/contacts \
  --header 'x-token: <api-key>'
{
  "data": [
    {
      "_id": "abc123",
      "firstname": "Jane",
      "lastname": "Smith",
      "fullname": "Jane Smith",
      "email": [
        "jane@example.com"
      ],
      "phone": [
        {
          "number": "+14155551234",
          "type": "mobile"
        }
      ]
    }
  ]
}

Authorizations

x-token
string
header
required

Path Parameters

boardId
string
required
cardId
string
required

Response

List of linked contacts.

data
object[]