Query quota lock
Introduction
This feature aims to detail the information of a quota lock request for an investor.
Request
ENDPOINT
/quota_lock/investor/INVESTOR_KEY/quota_lock/QUOTA_LOCK_KEYMETHOD
GETSTATUS
200Response
{
"quota_lock_key": "UUID",
"status": "pending_documents",
"original_locked_quotas": 0.0,
"current_locked_quotas": 0.0,
"original_locked_value": 0.0,
"current_locked_value": 0.0,
"type": "collateral",
"collateral": {
"recipient": {
"name": "Sample Recipient Name",
"document_number": "000.000.000-00",
"person_type": "natural_person",
"natural_person": {
"birthdate": "YYYY-MM-DD",
"mother_name": "Sample Recipient Mother Name"
}
},
"borrower": {
"name": "Sample Borrower Name",
"document_number": "000.000.000-00",
"person_type": "natural_person",
"natural_person": {
"birthdate": "YYYY-MM-DD",
"mother_name": "Sample Borrower Mother Name"
}
},
"assets": [
{
"asset_key": "UUID",
"asset_type": "cce",
"credit_operation": {
"contract_number": "1000000001",
"principal_value": 0.0,
"interest_rate_type": "post_fixed",
"pre_fixed": {
"monthly_rate": 0.0,
"calendar_base": "calendar_360"
},
"post_fixed": {
"calendar_base": "workdays",
"indexer": "di",
"rate": 1,
"lag": {
"reference": "daily",
"amount": 1
}
}
},
"documents": [
{
"document_key": "UUID",
"document_type": "asset_document"
}
]
}
],
"issuance_series": [
{
"issuance_serie_key": "UUID",
"number_of_quotas": 0.0,
"financial_value": 0.0
},
{
"issuance_serie_key": "UUID",
"number_of_quotas": 0.0,
"financial_value": 0.0
}
],
"documents": [
{
"document_key": "UUID",
"document_type": "collateral_contract"
}
]
},
"investor_positions_locks": [
{
"investor_position_lock_key": "UUID",
"investor_position_key": "UUID",
"original_locked_quotas": 0.0,
"current_locked_quotas": 0.0,
"original_locked_value": 0.0,
"current_locked_value": 0.0
}
]
}
Quota Lock
| Field | Type | Description | Characters |
|---|---|---|---|
quota_lock_key | string | Unique identifier of the quota lock | 36 |
status | string | Quota lock status enumerator | up to 255 |
type | string | Quota lock type enumerator | up to 255 |
original_locked_quotas | float | Original quantity of locked quotas | - |
current_locked_quotas | float | Current quantity of locked quotas | - |
original_locked_value | float | Original lock value | - |
current_locked_value | float | Current lock value | - |
collateral | JSON | Collateral object | - |
investor_positions_locks | Array | List of Investor position lock objects | - |
Quota Lock Status
| Enumerator | Description |
|---|---|
pending_documents | Pending documents |
pending_approval | Pending approval |
denied | Denied |
approved | Approved |
Quota Lock Type
| Enumerator | Description |
|---|---|
collateral | Collateral |
Collateral
| Field | Type | Description | Characters |
|---|---|---|---|
recipient | JSON | Recipient object | - |
borrower | JSON | Borrower object | - |
assets | Array | List of Asset objects | - |
issuance_series | Array | List of Issuance series objects | - |
documents | Array | List of Collateral document objects | - |
Recipient
| Field | Type | Description | Characters |
|---|---|---|---|
name | string | Recipient name | up to 255 |
document_number | string | Recipient CPF / CNPJ | 14 or 18 |
person_type | string | Natural or legal person enumerator | up to 255 |
natural_person | JSON | Natural Person object | - |
legal_person | JSON | Legal Person object | - |
Borrower
| Field | Type | Description | Characters |
|---|---|---|---|
name | string | Borrower name | up to 255 |
document_number | string | Borrower CPF / CNPJ | 14 or 18 |
person_type | string | Natural or legal person enumerator | up to 255 |
natural_person | JSON | Natural Person object | - |
legal_person | JSON | Legal Person object | - |
Person Type
| Enumerator | Description |
|---|---|
natural_person | Natural person |
legal_person | Legal person |
Natural Person
| Field | Type | Description | Characters |
|---|---|---|---|
birthdate | string | Birth date | 10 |
mother_name | string | Mother's name | up to 255 |
Legal Person
| Field | Type | Description | Characters |
|---|---|---|---|
activity_code | string | National Classification of Economic Activities (CNAE) | 10 |
representatives | array | List of Representative objects | - |
Representative
| Field | Type | Description | Characters |
|---|---|---|---|
name | string | Representative name | up to 255 |
document_number | string | Representative CPF | 14 |
Asset
| Field | Type | Description | Characters |
|---|---|---|---|
asset_key | string | Unique asset identifier | up to 255 |
asset_type | string | Asset type enumerator | up to 255 |
status | string | Asset status enumerator | up to 255 |
credit_operation | JSON | Credit Operation object | - |
documents | Array | List of Asset document objects | - |
Asset Status
| Enumerator | Description |
|---|---|
pending_approval | Pending approval |
done | Completed |
Document
| Field | Type | Description | Characters |
|---|---|---|---|
document_key | string | Unique asset identifier | up to 255 |
document_type | string | Asset type enumerator | up to 255 |
Asset Type
| Enumerator | Description |
|---|---|
ccb | CCB |
cce | CCE |
Credit Operation
| Field | Type | Description | Characters |
|---|---|---|---|
contract_number | string | Contract number | up to 255 |
principal_value | string | Operation principal value | - |
interest_rate_type | string | Post-fixed / pre-fixed enumerator | up to 255 |
pre_fixed | JSON | Pre-fixed object | - |
post_fixed | JSON | Post-fixed object | - |
Interest Rate Type
| Enumerator | Description |
|---|---|
pre_fixed | Pre-fixed |
post_fixed | Post-fixed |
Pre fixed
| Field | Type | Description | Characters |
|---|---|---|---|
calendar_base | string | Business days / 360-day calendar / 365-day calendar enumerator | up to 255 |
monthly_rate | float | Monthly rate | - |
Post fixed
| Field | Type | Description | Characters |
|---|---|---|---|
calendar_base | string | Business days / 360-day calendar / 365-day calendar enumerator | up to 255 |
indexer | string | DI / IPCA enumerator | up to 255 |
rate | float | Rate | - |
lag | JSON | Lag object | - |
calendar_base
| Enumerator | Description |
|---|---|
workdays | Business days |
calendar_360 | 360-day calendar |
calendar_365 | 365-day calendar |
Indexer
| Enumerator | Description |
|---|---|
di | DI |
ipca | IPCA |
Lag
| Field | Type | Description | Characters |
|---|---|---|---|
reference | string | Daily / Monthly enumerator | up to 255 |
amount | integer | Lag amount | - |
Reference
| Enumerator | Description |
|---|---|
daily | Daily |
monthly | Monthly |
Locked Investor Positions
| Field | Type | Description | Characters |
|---|---|---|---|
investor_position_lock_key | string | Unique identifier of the investor position lock | 36 |
investor_position_key | string | Unique identifier of the investor position | 36 |
original_locked_quotas | float | Original quantity of locked quotas | - |
current_locked_quotas | float | Current quantity of locked quotas | - |
original_locked_value | float | Original lock value | - |
current_locked_value | float | Current lock value | - |
Responses
Response Body
{
"quota_lock_key": "UUID"
}