PATCH
/
contacts
/
{id}
curl --request PATCH \
  --url https://productlane.com/api/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "jsmith@example.com",
  "segments": [
    "<string>"
  ]
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Required string length: 1 - 255

Body

application/json
name
string
Required string length: 1 - 255
email
string
segments
string[]

Response

200
application/json
Successful response

The response is of type any.