Skip to main content
PATCH
/
clients
/
{id}
/
contacts
/
{contact_id}
Edit Client Contact
curl --request PATCH \
  --url https://api.roostedhr.com/api/1_12/clients/{id}/contacts/{contact_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "number": "<string>",
  "email": "<string>",
  "title": "<string>"
}
'
true

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Client ID

contact_id
string
required

Contact ID

Body

application/json

Contact fields to update. All fields are optional.

name
string

Contact full name.

number
string

Phone number.

email
string

Email address.

title
string

Job title.

Response

OK

The response is of type boolean.