Authorization: Bearer ********************// Exemplo simples:
{
"filters": [
{
"field": "key",
"operator": "=",
"value": "simulation"
},
{
"field": "context",
"operator": "=",
"value": "generic_simulation"
}
],
"sort": [
{
"field": "created_at",
"direction": "desc"
}
],
"limit": 10
}
// Payload base:
// {
// "filters": [
// {
// "field": "key", // string, opcional, obrigatório dentro do item se não usar nested
// "operator": "=", // string, opcional, default do builder costuma ser "=", aceitos: <, <=, >, >=, =, !=, like, not like, ilike, not ilike, in, not in, all in, any in
// "value": "simulation", // mixed, opcional, depende do operator
// "type": "and" // string, opcional, aceitos: and | or
// },
// {
// "field": "context", // string, opcional
// "operator": "=", // string, opcional
// "value": "generic_simulation", // mixed, opcional
// "type": "and" // string, opcional
// },
// {
// "field": "is_active", // string, opcional
// "operator": "=", // string, opcional
// "value": true, // boolean, opcional
// "type": "and" // string, opcional
// }
// ],
// "search": {
// "value": "simulation", // string|null, opcional
// "case_sensitive": false // boolean, opcional
// },
// "sort": [
// {
// "field": "created_at", // string, opcional, obrigatório dentro do item se houver sort
// "direction": "desc" // string, opcional, aceitos: asc | desc
// }
// ],
// "limit": 10, // integer|string, opcional, quantidade por página
// "date_filters": [
// {
// "field": "created_at", // string, opcional, obrigatório se não usar fields
// "operator": ">=", // string, obrigatório no item, aceitos: =, <, <=, >, >=, between
// "value": "2026-07-01 00:00:00" // string|array, obrigatório
// }
// ]
// }{
"current_page": 1,
"data": [
{
"uuid": "d5d7fd15-d336-485e-8790-f4a83a947231",
"key": "simulation",
"is_active": true,
"settings": {
"generic_simulation": {
"iof": {
"pf": {
"daily": 8.2e-5,
"fixed": 0.0038
},
"pj": {
"daily": 4.1e-5,
"fixed": 0.0038
}
},
"tac": {
"type": "percentage",
"value": 0.007
},
"defaults": {
"charge_iof": true,
"other_costs": 0
}
}
},
"created_at": "2026-07-24T11:51:28.000000Z",
"updated_at": "2026-07-24T11:51:28.000000Z",
"context": "generic_simulation"
}
],
"first_page_url": "http://icredit.inovanti.local/api/v1/system-settings/search?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://icredit.inovanti.local/api/v1/system-settings/search?page=1",
"links": [
{
"url": null,
"label": "« Anterior",
"active": false
},
{
"url": "http://icredit.inovanti.local/api/v1/system-settings/search?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Próximo »",
"active": false
}
],
"next_page_url": null,
"path": "http://icredit.inovanti.local/api/v1/system-settings/search",
"per_page": 10,
"prev_page_url": null,
"to": 1,
"total": 1
}