Update a Customer

Update by ID

PUT https://api.moltin.com/v2/customers/:customerId

Path Parameters

NameTypeDescription

customerId

string

The ID for the customer requested

Headers

NameTypeDescription

X-Moltin-Customer-Token

string

A customer token used to access customer implicitly.

Authorization

string

The Bearer token to grant access to the API. If there is no customer token the grant type must be client_credentials.

Request Body

NameTypeDescription

type

string

The type of object being returned.

name

string

The full name of the customer.

email

string

The customer email

password

string

The customer password

{
    "data": {
        "type": "customer",
        "id": "b57022cf-c80e-4b85-9fd1-5af3156d8adf",
        "name": "George example",
        "email": "ron@swanson.com",
        "password": true
    }
}
curl -X PUT https://api.moltin.com/v2/customers/:customerId \
    -H "Authorization: Bearer XXXX" \
    -H "Content-Type: application/json" \
    -d $'{
     "data": {
       "type": "customer",
       "email": "ron@swanson.com"
     }
}'

With customer token

curl -X GET https://api.moltin.com/v2/customers/:id \
     -H "X-Moltin-Customer-Token: XXXX"
     -H "Authorization: Bearer XXXX"
     -d $'{
     "data": {
       "type": "customer",
       "email": "ron@swanson.com"
     }
}'

Without customer token

curl -X GET https://api.moltin.com/v2/customers/:id \
     -H "Authorization: Bearer XXXX"
     -d $'{
     "data": {
       "type": "customer",
       "email": "ron@swanson.com"
     }
}'

Last updated