- Credit
- Get Started
- Get Started APP
- Api Reference
- Auth
- Users
- Clients
- Banks
- Files
- search
- fInd
- audits
- list-by-organization
- get-me
- required-fields
- basic-create
- create
- create-legal
- update
- update-legal
- get-client-banks
- get-client-operations
- get-client-requests
- get-client-files
- finalize-registration
- change-status
- change-client-group
- change-client-user
- reset-password
- update-client-representative
- credit-analysis-validation
- additional-information
- create-client-from-onboarding
- client-validation
- Requests
- Operations
- Credit Analysis
- Supplires
- Auth
- Enums
search
POST
/api/v1/requests/search
Requisição
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Exemplo:
Authorization: Bearer ********************
Parâmetros Header
Accept
string
opcional
Padrão:
application/json
Content-Type
string
opcional
Padrão:
application/json
Parâmetros Bodyapplication/json
sort
array [object {2}]
requerido
field
string
opcional
direction
string
opcional
filters
array [object {3}]
requerido
field
string
opcional
operator
string
opcional
value
integer
opcional
Exemplo
{
"sort": [
{
"field": "created_at",
"direction": "desc"
}
],
"filters": [
{
"field": "client.name",
"operator": "like",
"value": "%Jorge%"
}
]
}
Respostas
🟢200Success
application/json
Body
current_page
integer
requerido
data
array [object {9}]
requerido
uuid
string
opcional
organization_uuid
string
opcional
client_uuid
string
opcional
status
string
opcional
value
string
opcional
operator_uuid
string
opcional
created_by
string
opcional
created_at
string
opcional
updated_at
string
opcional
first_page_url
string
requerido
from
integer
requerido
last_page
integer
requerido
last_page_url
string
requerido
links
array [object {3}]
requerido
url
string | null
requerido
label
string
requerido
active
boolean
requerido
next_page_url
null
requerido
path
string
requerido
per_page
integer
requerido
prev_page_url
null
requerido
to
integer
requerido
total
integer
requerido
Exemplo
{
"current_page": 1,
"data": [
{
"uuid": "bcaa44b9-8b00-495e-831f-fb7d9451337f",
"organization_uuid": "ca7d368e-9c5e-4ec3-b59f-5d437e1c7c07",
"client_uuid": "5c9607c4-8235-5b14-85cd-68984263efbc",
"status": "created",
"value": "5000.00000",
"operator_uuid": "677a35cd-cd49-4339-8a25-1aef24803ee0",
"created_by": "677a35cd-cd49-4339-8a25-1aef24803ee0",
"created_at": "2024-05-15T14:32:46.000000Z",
"updated_at": "2024-05-15T14:32:46.000000Z"
}
],
"first_page_url": "http://localhost:8000/api/v1/requests/search?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://localhost:8000/api/v1/requests/search?page=1",
"links": [
{
"url": null,
"label": "« Anterior",
"active": false
},
{
"url": "http://localhost:8000/api/v1/requests/search?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Próximo »",
"active": false
}
],
"next_page_url": null,
"path": "http://localhost:8000/api/v1/requests/search",
"per_page": 15,
"prev_page_url": null,
"to": 1,
"total": 1
}
Modified at 2025-03-18 18:33:46