- 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-client-pj
POST
/api/v1/requests/client
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
released_value
integer
requerido
number_of_installments
integer
requerido
payment_frequency
enum<string>
requerido
Valores permitidos:
monthlyfortnightlyweeklydailybiweeklyyearlyquarterlysemi_annuallyannually
guarantors
array [object {10}]
requerido
name
string
opcional
taxid_number
string
opcional
email
string
opcional
foundation_date
string
opcional
type
enum<string>
opcional
Valores permitidos:
physicallegal
legal
object
opcional
address
object
opcional
phone
object
opcional
banks
array[string]
opcional
files
array[string]
opcional
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
{
"released_value": 5000,
"number_of_installments": 12,
"payment_frequency": "monthly",
"guarantors": [
{
"name": "Carla Monique dos Santos da Luz Ribeiro",
"taxid_number": "04310345913",
"email": "teste@teste.com",
"foundation_date": "2000-01-01",
"type": "legal",
"legal": {
"trade_name": "Trade Name",
"state_registration": "Brasileiro",
"municipal_registration": "Curitiba",
"representative": [
{
"representative_name": "Representante legal",
"representative_email": "representande@email.com",
"representative_taxid_number": "00000000000",
"representative_mother_name": "Mother Name",
"address": {
"zip_code": "",
"public_place": "",
"number": "",
"complement": "",
"district": "",
"city": "",
"federal_unit": ""
},
"phone": {
"telephone_number": ""
}
}
]
},
"address": {
"zip_code": "33140000",
"public_place": "Rua sem nome",
"number": "123",
"complement": "casa 1",
"district": "Conjunto Palimital",
"city": "Santa Luzia",
"federal_unit": "MG"
},
"phone": {
"telephone_number": "11999999999"
},
"banks": [],
"files": []
}
],
"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:04:46