Set Account Defaults
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"defaultPayType": "CASH",
"payTypes": [
"CASH"
],
"priceCode": 0,
"taxCode": "string",
"maxDays": 0,
"signatureRequired": true,
"version": 0
}
Request samples
curl --location --request PUT 'https://mock.apidog.com/m1/365924-0-default/customer-account-defaults/' \
--header 'Content-Type: application/json' \
--data-raw '{
"defaultPayType": "CASH",
"payTypes": [
"CASH"
],
"priceCode": 0,
"taxCode": "string",
"maxDays": 0,
"signatureRequired": true,
"version": 0
}'
Responses
application/json {
"data": {
"defaultPayType": "CASH",
"payTypes": [
"CASH"
],
"priceCode": 0,
"taxCode": "string",
"maxDays": 0,
"signatureRequired": false,
"version": 0
}
}
Modified at 2025-05-06 23:48:08