curl --request GET \
--url https://sandbox.intermezzo.ai/organizations/{organization_id}/worksites/{worksite_id}/contacts \
--header 'Authorization: Bearer <token>'[
{
"name": "<string>",
"id": "<string>",
"email": "jsmith@example.com",
"phone": {
"phoneNumber": "<string>",
"phoneType": "mobile"
},
"roles": []
}
]Get all contacts attached to a worksite
curl --request GET \
--url https://sandbox.intermezzo.ai/organizations/{organization_id}/worksites/{worksite_id}/contacts \
--header 'Authorization: Bearer <token>'[
{
"name": "<string>",
"id": "<string>",
"email": "jsmith@example.com",
"phone": {
"phoneNumber": "<string>",
"phoneType": "mobile"
},
"roles": []
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?