GET
/
v1
/
contactBooks
/
{contactBookId}
cURL
curl --request GET \
  --url https://app.weesend.com/api/v1/contactBooks/{contactBookId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "teamId": 123,
  "properties": {},
  "emoji": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "_count": {
    "contacts": 123
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

contactBookId
string
required
Example:

"clx1234567890"

Response

Retrieve the contact book

id
string
required
name
string
required
teamId
number
required
properties
object
required
emoji
string
required
createdAt
string
required
updatedAt
string
required
_count
object