iCredit
  1. Types
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
              POST
            • list
              GET
            • fInd
              GET
            • create
              POST
            • update
              PUT
            • delete
              DELETE
          • create
            POST
          • fInd
            GET
          • download
            GET
          • search
            POST
          • delete
            DELETE
        • search
          POST
        • fInd
          GET
        • audits
          POST
        • list-by-organization
          GET
        • get-me
          GET
        • required-fields
          GET
        • basic-create
          POST
        • create
          POST
        • create-legal
          POST
        • update
          PUT
        • update-legal
          PUT
        • get-client-banks
          GET
        • get-client-operations
          GET
        • get-client-requests
          GET
        • get-client-files
          GET
        • finalize-registration
          PUT
        • change-status
          POST
        • change-client-group
          POST
        • change-client-user
          POST
        • reset-password
          POST
        • update-client-representative
          PATCH
        • credit-analysis-validation
          PATCH
        • additional-information
          GET
        • create-client-from-onboarding
          POST
        • client-validation
          GET
      • Requests
        • Options
          • update
        • Files
          • search
          • find
          • create
          • update
          • delete
          • download
        • search
        • find
        • create
        • create-client-pj
        • create-client-pf
        • create-request-passing-client
        • update
        • delete
        • send-to-client-approval
        • handle-change-fund
        • handle-change-endorser
        • reject
        • accept
      • 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. Types

search

POST
/api/v1/client-file-types/search
Buscar tipos de arquivos relacionados a um cliente 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

Respostas

🟢200Success
application/json
Body
current_page
integer 
requerido
data
array [object {3}] 
requerido
type
string 
requerido
label
string 
requerido
is_active
boolean 
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": [
        {
            "type": "IDENTITY_FRONT",
            "label": "Documento de identificação (Frente)",
            "is_active": true
        },
        {
            "type": "IDENTITY_BACK",
            "label": "Documento de identificação (Verso)",
            "is_active": true
        },
        {
            "type": "PICTURE",
            "label": "Selfie",
            "is_active": true
        },
        {
            "type": "DRIVERS_LICENSE",
            "label": "Carteira de motorista",
            "is_active": true
        },
        {
            "type": "CONTRACT",
            "label": "Contrato",
            "is_active": true
        }
    ],
    "first_page_url": "http://localhost:8000/api/v1/client-file-types/search?page=1",
    "from": 1,
    "last_page": 1,
    "last_page_url": "http://localhost:8000/api/v1/client-file-types/search?page=1",
    "links": [
        {
            "url": null,
            "label": "« Anterior",
            "active": false
        },
        {
            "url": "http://localhost:8000/api/v1/client-file-types/search?page=1",
            "label": "1",
            "active": true
        },
        {
            "url": null,
            "label": "Próximo »",
            "active": false
        }
    ],
    "next_page_url": null,
    "path": "http://localhost:8000/api/v1/client-file-types/search",
    "per_page": 15,
    "prev_page_url": null,
    "to": 5,
    "total": 5
}
Modificado em 2024-10-29 14:00:25
Página anterior
Files
Próxima página
list
Built with