cURL
curl --request PATCH \ --url https://api.example.com/organizations/{organization_id}/worksites/{worksite_id}/contacts/{contact_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{}'
{ "name": "<string>", "id": "<string>", "email": "jsmith@example.com", "phone": { "phoneNumber": "<string>", "phoneType": "mobile" }, "roles": [] }
Update contact and its worksite-specific roles
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Show child attributes
Successful Response