Update a customer
PATCH
/customers/{id}
Authentication
Bearer Token API Key (header: X-API-Key)
Path Parameters
id
string
required
path
Responses
200
Updated customer
No response body
curl -X PATCH 'https://platform-api.anyspend.com/api/v1/customers/string' \ -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://platform-api.anyspend.com/api/v1/customers/string', { method: 'PATCH', headers: { "Authorization": "Bearer YOUR_API_TOKEN" }});const data = await response.json();console.log(data);
import requestsheaders = { 'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.patch('https://platform-api.anyspend.com/api/v1/customers/string', headers=headers)print(response.json())
API Playground
Try this endpoint
PATCH
/customers/{id}

