GET
/
organizations
/
{organization_id}
/
worksites
/
{worksite_id}
/
contacts
Get Worksite Contacts
curl --request GET \
  --url https://sandbox.intermezzo.ai/organizations/{organization_id}/worksites/{worksite_id}/contacts \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "email": "jsmith@example.com",
    "phone": {
      "phoneNumber": "<string>",
      "phoneType": "mobile"
    },
    "id": "con_01h455vb4pex5vsknk084sn02q",
    "roles": []
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organization_id
string
required

TypeID with prefix 'org'

Example:

"org_01h455vb4pex5vsknk084sn02q"

worksite_id
string
required

TypeID with prefix 'wst'

Example:

"wst_01h455vb4pex5vsknk084sn02q"

Response

200
application/json

Successful Response

The response is of type ContactResponse · object[].