curl --request PATCH \
--url https://your-instance.example.com/api/contacts/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "<string>",
"pipelineStage": "<string>",
"pipelineId": "<string>"
}
'{
"success": true,
"data": {
"contact": {
"_id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phoneNumber": "<string>",
"email": "<string>",
"status": "<string>",
"pipelineId": "<string>",
"pipelineStage": "<string>",
"organizationId": "<string>",
"userId": "<string>",
"createdBy": "<string>",
"assignees": [
"<unknown>"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"message": "<string>"
},
"message": "<string>",
"contact": {
"_id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phoneNumber": "<string>",
"email": "<string>",
"status": "<string>",
"pipelineId": "<string>",
"pipelineStage": "<string>",
"organizationId": "<string>",
"userId": "<string>",
"createdBy": "<string>",
"assignees": [
"<unknown>"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}curl --request PATCH \
--url https://your-instance.example.com/api/contacts/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "<string>",
"pipelineStage": "<string>",
"pipelineId": "<string>"
}
'{
"success": true,
"data": {
"contact": {
"_id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phoneNumber": "<string>",
"email": "<string>",
"status": "<string>",
"pipelineId": "<string>",
"pipelineStage": "<string>",
"organizationId": "<string>",
"userId": "<string>",
"createdBy": "<string>",
"assignees": [
"<unknown>"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"message": "<string>"
},
"message": "<string>",
"contact": {
"_id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phoneNumber": "<string>",
"email": "<string>",
"status": "<string>",
"pipelineId": "<string>",
"pipelineStage": "<string>",
"organizationId": "<string>",
"userId": "<string>",
"createdBy": "<string>",
"assignees": [
"<unknown>"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.