- Credit
- Get Started
- Get Started APP
- Api Reference
- Auth
- Users
- Clients
- Banks
- Files
- searchPOST
- fIndGET
- auditsPOST
- list-by-organizationGET
- get-meGET
- required-fieldsGET
- basic-createPOST
- createPOST
- create-legalPOST
- updatePUT
- update-legalPUT
- get-client-banksGET
- get-client-operationsGET
- get-client-requestsGET
- get-client-filesGET
- finalize-registrationPUT
- change-statusPOST
- change-client-groupPOST
- change-client-userPOST
- reset-passwordPOST
- update-client-representativePATCH
- credit-analysis-validationPATCH
- additional-informationGET
- create-client-from-onboardingPOST
- client-validationGET
- Banks
- Requests
- Operations
- Credit Analysis
- Supplires
- Auth
- Enums
search
POST
/api/v1/client-file-types/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 {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
}
Modified at 2024-10-29 14:00:25