Skip to main content
PUT
/
v1
/
ui
/
customers
/
{id}
Update customer
curl --request PUT \
  --url https://api.example.com/v1/ui/customers/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "metadata": {},
  "email": "jsmith@example.com",
  "name": "<string>",
  "telephone": "<string>",
  "externalRef": "<string>"
}
'
Only submit the fields explicitly listed in the RFI. Sending unrequested fields will result in an error.
The request body accepts the same fields as the following endpoints:
  • Create Individual Customer
  • Create Business Customer V1
  • Create Business Customer V2
  • Attach Documents to Individual Customer
  • Attach Documents to Business Customer
  • Attach Documents to Business Customer V2
  • Attach Document To Associated Party
  • Attach Document To Associated Party V2

Path Parameters

id
string
required

Customer ID

Example:

"507f1f77bcf86cd799439011"

Body

application/json
metadata
object
required
email
string<email>
name
string
telephone
string
externalRef
string

Response

Customer updated successfully