Search contacts
GET/v1/accounts/{accountID}/contacts
Search contacts on a specific account using merged account contacts, network search, and exact identifier lookup.
Path Parameters
accountID: string
Account ID this resource belongs to.
Query Parameters
query: string
Text to search users by. Network-specific behavior.
minLength1
Returns
Search contacts
curl http://localhost:23373/v1/accounts/$ACCOUNT_ID/contacts{
"items": [
{
"id": "id",
"cannotMessage": true,
"email": "email",
"fullName": "fullName",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "username"
}
]
}Returns Examples
{
"items": [
{
"id": "id",
"cannotMessage": true,
"email": "email",
"fullName": "fullName",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "username"
}
]
}