Updates the details of an existing contact in the system using its unique identifier. This endpoint allows modifications to fields such as name, email, or other associated metadata. Ensure the contact ID provided exists and that the payload contains the updated information.
Request
Authorization
Add parameter in header
x-api-token
Example:
x-api-token: ********************
Path Params
Body Params application/json
Example
{"name":"John Doe","role":"Approve","title":"Project Manager","email":"john.doe@example.com","phoneIdd":1,"phoneNumber":"1234567890","documentType":"GenericIdentification","documentValue":"A1234567","description":"A contact person for project management."}
Request Code Samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request PUT 'https://api.signater.com/v1/ecm/contacts/' \
--header'Content-Type: application/json' \
--header'x-api-token;' \
--data-raw'{
"name": "John Doe",
"role": "Approve",
"title": "Project Manager",
"email": "john.doe@example.com",
"phoneIdd": 1,
"phoneNumber": "1234567890",
"documentType": "GenericIdentification",
"documentValue": "A1234567",
"description": "A contact person for project management."
}'