Search contacts
$ beeper-desktop-cli accounts:contacts search
GET/v1/accounts/{accountID}/contacts
Search contacts on a specific account using merged account contacts, network search, and exact identifier lookup.
Parameters
--account-id: string
Account ID this resource belongs to.
--query: string
Text to search users by. Network-specific behavior.
Returns
Search contacts
beeper-desktop-cli accounts:contacts search \
--account-id accountID \
--query x{
"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"
}
]
}