- 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
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
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": "e21b81d5-161d-5772-b009-8a507fa6f91a",
"fund_uuid": "0a0064f1-e719-5f99-92c0-04e78d883dbe",
"organization_uuid": "c0b61bfd-0eda-5694-87c3-d049a9684b19",
"endorser_uuid": "648cb62a-4d0d-5d2d-a657-174246789969",
"released_value": 5000,
"should_notify_client": false,
"guarantors": [
"e21b81d5-161d-5772-b009-8a507fa6f91a"
],
"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"
}
Modified at 2024-11-18 18:00:05