Skip to main content

Update Customer

Update an existing customer’s details.

Endpoint Information

Name: Update Customer
Method: POST
URL: {{BASE_URL}}/api/v1/update-customer

Authentication

Type: Basic Auth

  • Username: App Key
  • Password: Secret Key

Request Body

Content-Type: application/json

{
"firstName": "Traveller",
"middleName": "",
"lastName": "Camp Token",
"email": "[email protected]",
"dob": "1994-12-20",
"contactNumber": "+8801673712498",
"merchantAccountId": "100012",
"addressDetails": {
"country": "Sweden",
"state": "Stockholmes",
"city": "Stockholmes",
"address": "16/A, Stockholmes",
"zipCode": "11115"
}
}

Response

Success Response

{
"success": true,
"message": "Success",
"data": {
"customer_reference_id": "ea259b86-f927-4aae-8f43-96f935846306",
"token": "697a80181f9c9f4b3eb339707715ffc6",
"expire_at": "2026-11-12"
}
}