- 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/banks/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
ispb
string
requerido
code
string
requerido
bank
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
string
requerido
path
string
requerido
per_page
integer
requerido
prev_page_url
null
requerido
to
integer
requerido
total
integer
requerido
Exemplo
{
"current_page": 1,
"data": [
{
"ispb": "00000000",
"code": "001",
"bank": "001 - Banco do Brasil S.A."
},
{
"ispb": "00038166",
"code": "002",
"bank": "002 - BANCO CENTRAL DO BRASIL"
},
{
"ispb": "04902979",
"code": "003",
"bank": "003 - Banco da Amazônia S.A."
},
{
"ispb": "07237373",
"code": "004",
"bank": "004 - Banco do Nordeste do Brasil S.A."
},
{
"ispb": "33657248",
"code": "007",
"bank": "007 - BANCO NACIONAL DE DESENVOLVIMENTO ECONOMICO E SOCIAL"
},
{
"ispb": "81723108",
"code": "010",
"bank": "010 - CREDICOAMO CREDITO RURAL COOPERATIVA"
},
{
"ispb": "61809182",
"code": "011",
"bank": "011 - CREDIT SUISSE HEDGING-GRIFFO CORRETORA DE VALORES S.A"
},
{
"ispb": "04866275",
"code": "012",
"bank": "012 - Banco Inbursa S.A."
},
{
"ispb": "09274232",
"code": "014",
"bank": "014 - STATE STREET BRASIL S.A. - BANCO COMERCIAL"
},
{
"ispb": "02819125",
"code": "015",
"bank": "015 - UBS Brasil Corretora de Câmbio, Títulos e Valores Mobiliários S.A."
},
{
"ispb": "04715685",
"code": "016",
"bank": "016 - COOPERATIVA DE CRÉDITO MÚTUO DOS DESPACHANTES DE TRÂNSITO DE SANTA CATARINA E RI"
},
{
"ispb": "42272526",
"code": "017",
"bank": "017 - BNY Mellon Banco S.A."
},
{
"ispb": "57839805",
"code": "018",
"bank": "018 - Banco Tricury S.A."
},
{
"ispb": "28127603",
"code": "021",
"bank": "021 - BANESTES S.A. Banco do Estado do Espírito Santo"
},
{
"ispb": "10866788",
"code": "024",
"bank": "024 - Banco Bandepe S.A."
}
],
"first_page_url": "http://localhost:8000/api/v1/banks/search?page=1",
"from": 1,
"last_page": 22,
"last_page_url": "http://localhost:8000/api/v1/banks/search?page=22",
"links": [
{
"url": null,
"label": "« Anterior",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=1",
"label": "1",
"active": true
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=2",
"label": "2",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=3",
"label": "3",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=4",
"label": "4",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=5",
"label": "5",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=6",
"label": "6",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=7",
"label": "7",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=8",
"label": "8",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=9",
"label": "9",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=10",
"label": "10",
"active": false
},
{
"url": null,
"label": "...",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=21",
"label": "21",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=22",
"label": "22",
"active": false
},
{
"url": "http://localhost:8000/api/v1/banks/search?page=2",
"label": "Próximo »",
"active": false
}
],
"next_page_url": "http://localhost:8000/api/v1/banks/search?page=2",
"path": "http://localhost:8000/api/v1/banks/search",
"per_page": 15,
"prev_page_url": null,
"to": 15,
"total": 329
}
Modified at 2024-10-29 13:55:31