- 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
- Credit Analysis
- Supplires
- Auth
- Enums
create
POST
/api/v1/requests
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
client_uuid
string
requerido
fund_uuid
string
requerido
organization_uuid
string
requerido
endorser_uuid
string
requerido
released_value
integer
requerido
should_notify_client
boolean
requerido
guarantors
array[string]
requerido
request_options
array [object {3}]
requerido
interest_rate
number
opcional
number_of_installments
integer
opcional
payment_frequency
enum<string>
opcional
Valores permitidos:
monthlyfortnightlyweeklydailybiweeklyyearlyquarterlysemi_annuallyannually
Exemplo
{
"client_uuid": "00e042d2-71c1-57be-960f-93d248ea6d3d",
"fund_uuid": "0a0064f1-e719-5f99-92c0-04e78d883dbe",
"organization_uuid": "c0b61bfd-0eda-5694-87c3-d049a9684b19",
"endorser_uuid": "648cb62a-4d0d-5d2d-a657-174246789969",
"released_value": 5000.00,
"should_notify_client": false,
"guarantors": [],
"request_options": [
{
"interest_rate": 0.015,
"number_of_installments": 12,
"payment_frequency": "monthly"
}
]
}
Respostas
🟢201Success
application/json
Body
uuid
string
requerido
Exemplo
{
"uuid": "bcaa44b9-8b00-495e-831f-fb7d9451337f"
}
Modificado em 2025-05-16 13:51:33