iCredit
  1. Requests
iCredit
  • Credit
    • Get Started
      • About
      • Authentication
      • Error Messages
    • Get Started APP
      • About
      • Authentication
      • Error Messages
      • Webhooks
    • Api Reference
      • Auth
        • login
        • refresh
        • logout
        • update-password
      • Users
        • me
      • Clients
        • Banks
          • list
          • search
          • find
          • create
          • update
          • delete
        • Files
          • Types
            • search
            • list
            • fInd
            • create
            • update
            • delete
          • create
          • fInd
          • download
          • search
          • delete
        • 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
        • Options
          • update
        • Files
          • search
          • find
          • create
          • update
          • delete
          • download
        • search
          POST
        • find
          GET
        • create
          POST
        • create-client-pj
          POST
        • create-client-pf
          POST
        • create-request-passing-client
          POST
        • update
          PUT
        • delete
          DELETE
        • send-to-client-approval
          POST
        • handle-change-fund
          PUT
        • handle-change-endorser
          PUT
        • reject
          POST
        • accept
          POST
      • Operations
        • required-fields
        • search
        • find
        • audit
        • create
        • simulate
        • update
        • delete
        • files
        • resend-notification
        • update-deadline-at
        • add-signatories
        • remove-signatory
        • cancel-document
        • finish-document
        • reprocess-current-status
        • change-status
        • update-status-to-grant
        • update-status-to-endorsement
        • update-status-to-approval
        • operation-status
      • Credit Analysis
        • Serasa
          • analysis
          • new-report
      • Supplires
        • find
        • search
        • create
        • send-or-update-public-key
        • delete
        • inactive
        • set-status
    • Enums
      • ClientTypeEnum
      • ClientFilesStatusEnum
      • BankAccountTypeEnum
      • OperationFrequencyEnum
      • OperationModalityEnum
      • OperationCalcMethodEnum
      • SignAsEnum
  1. Requests

search

POST
/api/v1/requests/search
Buscar solicitações com base em critérios de pesquisa.

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
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
}
Modificado em 2025-03-18 18:33:46
Página anterior
download
Próxima página
find
Built with