- 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
- required-fieldsGET
- searchPOST
- findGET
- auditPOST
- createPOST
- simulatePOST
- updatePUT
- deleteDELETE
- filesGET
- resend-notificationGET
- update-deadline-atPATCH
- add-signatoriesPOST
- remove-signatoryDELETE
- cancel-documentPATCH
- finish-documentPATCH
- reprocess-current-statusPOST
- change-statusPOST
- update-status-to-grantPOST
- update-status-to-endorsementPOST
- update-status-to-approvalPOST
- operation-statusGET
- Credit Analysis
- Supplires
- Auth
- Enums
search
POST
/api/v1/operations/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
Respostas
🟢200Success
application/json
Body
current_page
integer
requerido
data
array [object {13}]
requerido
uuid
string
requerido
organization_uuid
string
requerido
client_uuid
string
requerido
client_bank_id
integer
requerido
fund_uuid
string
requerido
status
string
requerido
value
string
requerido
tax
string
requerido
deadline
integer
requerido
operator_uuid
null
requerido
created_by
string
requerido
created_at
string
requerido
updated_at
string
requerido
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": "d223bf14-aa74-4c20-994a-ef22a8dd612b",
"organization_uuid": "ca7d368e-9c5e-4ec3-b59f-5d437e1c7c07",
"client_uuid": "5c9607c4-8235-5b14-85cd-68984263efbc",
"client_bank_id": 1,
"fund_uuid": "f9432e7f-618a-5ee6-9f5f-31b1968c9d89",
"status": "created",
"value": "300.00000",
"tax": "1.80000",
"deadline": 360,
"operator_uuid": null,
"created_by": "68f62e00-a68d-537a-adc5-5598e90ad299",
"created_at": "2024-05-20T13:32:16.000000Z",
"updated_at": "2024-05-20T13:32:16.000000Z"
},
{
"uuid": "f794d78d-aeb1-4066-88d8-7f25f99a2370",
"organization_uuid": "ca7d368e-9c5e-4ec3-b59f-5d437e1c7c07",
"client_uuid": "5c9607c4-8235-5b14-85cd-68984263efbc",
"client_bank_id": 1,
"fund_uuid": "f9432e7f-618a-5ee6-9f5f-31b1968c9d89",
"status": "created",
"value": "300.00000",
"tax": "1.80000",
"deadline": 360,
"operator_uuid": null,
"created_by": "68f62e00-a68d-537a-adc5-5598e90ad299",
"created_at": "2024-05-20T13:32:22.000000Z",
"updated_at": "2024-05-20T13:32:22.000000Z"
},
{
"uuid": "aba9b778-6203-4a6c-b915-a0d16ba0dba4",
"organization_uuid": "ca7d368e-9c5e-4ec3-b59f-5d437e1c7c07",
"client_uuid": "5c9607c4-8235-5b14-85cd-68984263efbc",
"client_bank_id": 1,
"fund_uuid": "f9432e7f-618a-5ee6-9f5f-31b1968c9d89",
"status": "created",
"value": "5000.00000",
"tax": "1.10000",
"deadline": 180,
"operator_uuid": null,
"created_by": "68f62e00-a68d-537a-adc5-5598e90ad299",
"created_at": "2024-05-20T13:32:34.000000Z",
"updated_at": "2024-05-20T13:32:34.000000Z"
}
],
"first_page_url": "http://localhost:8000/api/v1/operations/search?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "http://localhost:8000/api/v1/operations/search?page=1",
"links": [
{
"url": null,
"label": "« Anterior",
"active": false
},
{
"url": "http://localhost:8000/api/v1/operations/search?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Próximo »",
"active": false
}
],
"next_page_url": null,
"path": "http://localhost:8000/api/v1/operations/search",
"per_page": 15,
"prev_page_url": null,
"to": 3,
"total": 3
}
Modified at 2024-10-29 14:19:15