List contacts
$client->accounts->contacts->list(string accountID, ?string cursor, ?Direction direction, ?int limit, ?string query): CursorSearch<User>
GET/v1/accounts/{accountID}/contacts/list
List merged contacts for a specific account with cursor-based pagination.
Parameters
accountID: string
Account ID this resource belongs to.
cursor?:optional string
Opaque pagination cursor; do not inspect. Use together with 'direction'.
Pagination direction used with 'cursor': 'before' fetches older results, 'after' fetches newer results. Defaults to 'before' when only 'cursor' is provided.
limit?:optional int
Maximum contacts to return per page.
query?:optional string
Optional search query for blended contact lookup.
Returns
List contacts
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client();
$page = $client->accounts->contacts->list(
'accountID',
cursor: '1725489123456|c29tZUltc2dQYWdl',
direction: 'before',
limit: 1,
query: 'x',
);
var_dump($page);{
"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"
}