Skip to main content
PUT
/
customer
/
{customerId}
Update a customer
curl --request PUT \
  --url https://rest.staging.nickel.com/customer/{customerId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "emails": [
    "<string>"
  ],
  "syncToQbo": true
}
'
{
  "id": "clkqzo2y1000cx9tfohoiodq1",
  "name": "Claudio Wilson",
  "emails": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://dev.nickel.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customerId
string
required

ID of the customer to update

Body

application/json

Update an existing customer

name
string
required
emails
string[]
required
syncToQbo
boolean

Response

Successful operation

id
string
Example:

"clkqzo2y1000cx9tfohoiodq1"

name
string
Example:

"Claudio Wilson"

emails
string[]