curl --request GET \
--url https://dev.intermezzo.ai/contacts \
--header 'Authorization: Bearer <token>'[
{
"name": "<string>",
"id": "<string>",
"email": "jsmith@example.com",
"phone": {
"phoneNumber": "<string>",
"phoneType": "mobile"
},
"roles": []
}
]Get all contacts available to the user with optional name filtering
curl --request GET \
--url https://dev.intermezzo.ai/contacts \
--header 'Authorization: Bearer <token>'[
{
"name": "<string>",
"id": "<string>",
"email": "jsmith@example.com",
"phone": {
"phoneNumber": "<string>",
"phoneType": "mobile"
},
"roles": []
}
]Was this page helpful?