get https://{accountName}.{environment}.com.br/api/creditcontrol/storeconfig
Get store configuration data.
Response body has the following properties
Name | Type | Mandatory | Description |
---|---|---|---|
dailyInterestRate |
decimal | Yes | |
invoicePostponementLimit |
number | Yes | |
taxRate |
decimal | Yes | |
maxPostponementDays |
number | ||
defaultCreditValue |
decimal | Yes | |
automaticCheckingAccountCreationEnabled |
boolean | Yes | |
toleranceEnabled |
boolean | ||
myCreditsEnabled |
boolean | Yes | |
maxPreAuthorizationGrowthRate |
decimal | Yes | |
notificationsSettings |
object | ||
↳ daysPrior |
array | ||
↳daysAfter |
array | ||
days |
number | ||
timeOfDay |
string |
Response body example:
{
"dailyInterestRate": 0.5,
"invoicePostponementLimit": 1,
"taxRate": 0.4,
"maxPostponementDays": 3,
"defaultCreditValue": 100.0,
"postponementEnabled": false,
"automaticCheckingAccountCreationEnabled": false,
"toleranceEnabled": false,
"myCreditsEnabled": false,
"maxPreAuthorizationGrowthRate": 0.2,
"notificationsSettings": {
"daysPrior": [],
"daysAfter": [
{
"days": 1,
"timeOfDay": "16:00:00"
},
{
"days": 0,
"timeOfDay": "12:00:00"
}
]
}
}