Skip to main content

List contacts

Gets a list of user contacts.

GET https://api.cogfy.com/user-contacts

Response body

  • data: Array of contact objects.
    • id: The ID of the contact.
    • type: 'phone'
    • value: The contact's phone number as created.
    • normalizedValue: The contact's phone number in standardized format.
    • confirmed: Boolean indicator of contact confirmation.

Example JSON response

{
"data": [
{
"id": "25d9e43c-a72a-48ca-98fe-971f8a6b68f5",
"type": "phone",
"value": "+55 (11) 99999-9999",
"normalizedValue": "5511999999999",
"confirmed": true
},
{
"id": "03b132be-6d07-41ef-b466-a7584ec44cd6",
"type": "phone",
"value": "+55 13 98888-8888",
"normalizedValue": "5513988888888",
"confirmed": false
}
]
}