Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"cashOverDays": true,
"cashOverLimit": true,
"daysOverDue": 0,
"limit": 0,
"billToAddress": {
"street1": "string",
"street2": "string",
"city": "string",
"state": "string",
"countryCode": "string",
"zipCode": "/regex/"
},
"defaultPayType": "CASH",
"payTypes": [
"CASH"
],
"priceCode": 0,
"taxCode": 0,
"requiresSignatureCapture": true,
"version": 0,
"status": "ACTIVE"
}
Request samples
curl --location --request PUT 'https://mock.apidog.com/m1/365924-0-default/customers//account' \
--header 'Content-Type: application/json' \
--data-raw '{
"cashOverDays": true,
"cashOverLimit": true,
"daysOverDue": 0,
"limit": 0,
"billToAddress": {
"street1": "string",
"street2": "string",
"city": "string",
"state": "string",
"countryCode": "string",
"zipCode": "/regex/"
},
"defaultPayType": "CASH",
"payTypes": [
"CASH"
],
"priceCode": 0,
"taxCode": 0,
"requiresSignatureCapture": true,
"version": 0,
"status": "ACTIVE"
}'
Responses
application/json {
"data": {
"id": 0,
"status": "ACTIVE",
"billToAddress": {
"street1": "string",
"street2": "string",
"city": "string",
"state": "string",
"countryCode": "string",
"zipCode": "/regex/"
},
"balance": 0,
"creditLimit": 0,
"cashOverLimit": false,
"cashOverDays": false,
"ageInDays": 0,
"defaultPayType": "CASH",
"payTypes": [
"CASH"
],
"priceCode": 0,
"taxCode": "string",
"maxDays": 0,
"signatureRequired": false,
"version": 0
}
}
Modified at 2025-05-03 00:23:20