Authorization: Bearer ********************// Exemplo mínimo válido:
{
"key": "simulation",
"context": "generic_simulation",
"is_active": true,
"settings": {
"generic_simulation": {
"tac": {
"type": "percentage",
"value": 0.007
}
}
}
}
// Exemplo completo
// {
// "key": "simulation", // string, obrigatório, enum atual: simulation
// "context": "generic_simulation", // string|null, opcional, enum atual: generic_simulation
// "is_active": true, // boolean, obrigatório
// "settings": { // object/array|null, opcional
// "generic_simulation": {
// "iof": {
// "pf": {
// "daily": 0.000082, // number, opcional
// "fixed": 0.0038 // number, opcional
// },
// "pj": {
// "daily": 0.000041, // number, opcional
// "fixed": 0.0038 // number, opcional
// }
// },
// "tac": {
// "type": "percentage", // string, opcional
// "value": 0.007 // number, opcional
// },
// "defaults": {
// "charge_iof": true, // boolean, opcional
// "other_costs": 0 // number, opcional
// }
// }
// }
// }{}