PUT
Update by ID
https://api.moltin.com/v2/customers/:customerId
Parameters
Path parameters
Name | Required | Type | Description |
customerId | Required | string | The ID for the customer requested. |
Headers
Name | Required | Type | Description |
X-Moltin-Customer-Token | Optional | string | A customer token used to access customer implicitly. |
Authorization | Required | string | The Bearer token required to get access to the API. If there is no customer token the grant type must be client_credentials. |
Body
Name | Required | Type | Description |
type | Required | string | The type of object being returned. |
name | Optional | string | The full name of the customer. |
email | Optional | string | The customer email. |
password | Optional | string | The customer password. |
Request Examples
Curl
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"
}
}'
JavaScript SDK
const MoltinGateway = require("@moltin/sdk").gateway;
const Moltin = MoltinGateway({
client_id: "X",
});
var customerId = "XXXX";
var customer = {
email: "ron@swanson.com",
};
Moltin.Customers.Update(customerId, customer).then((response) => {
});
Request Example With Customer Token
curl -X PUT 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"
}
}'
Request Example Without Customer Token
curl -X PUT https://api.moltin.com/v2/customers/:id \
-H "Authorization: Bearer XXXX"
-d $'{
"data": {
"type": "customer",
"email": "ron@swanson.com"
}
}'
Response Example
200 OK
{
"data": {
"type": "customer",
"id": "b57022cf-c80e-4b85-9fd1-5af3156d8adf",
"name": "George example",
"email": "ron@swanson.com",
"password": true
}
}