List contacts
$ beeper-desktop-cli accounts:contacts list
GET/v1/accounts/{accountID}/contacts/list
List merged contacts for a specific account with cursor-based pagination.
Parameters
--account-id: string
Account ID this resource belongs to.
--cursor: optional string
Opaque pagination cursor; do not inspect. Use together with 'direction'.
--direction: optional "after" or "before"
Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.
--limit: optional number
Maximum contacts to return per page.
--query: optional string
Optional search query for blended contact lookup.
Returns
List contacts
beeper-desktop-cli accounts:contacts list \
--account-id accountID{
"hasMore": true,
"items": [
{
"id": "id",
"cannotMessage": true,
"email": "email",
"fullName": "fullName",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "username"
}
],
"newestCursor": "newestCursor",
"oldestCursor": "oldestCursor"
}Returns Examples
{
"hasMore": true,
"items": [
{
"id": "id",
"cannotMessage": true,
"email": "email",
"fullName": "fullName",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "username"
}
],
"newestCursor": "newestCursor",
"oldestCursor": "oldestCursor"
}