Skip to main content
PATCH
/
customers
/
customer
/
{customerId}
/
updatecontact
Update Customer Contact
curl --request PATCH \
  --url https://waas-staging.embedly.ng/api/v1/customers/customer/{customerId}/updatecontact \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "organizationId": "<string>",
  "mobileNumber": "<string>",
  "emailAddress": "<string>"
}
'
{
  "code": "00",
  "success": true,
  "message": "Updated Successfully",
  "data": null
}
customerId
string
required
The unique identifier of the customer whose contact details are to be updated. Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
organizationId
string
mobileNumber
string
required
The new mobile number of the individual. Example: 09090909090
emailAddress
string
The new email addrress of the individual. Example: [email protected]
{
  "code": "00",
  "success": true,
  "message": "Updated Successfully",
  "data": null
}