Vortex
  1. Brazil
Vortex
  • General overview
  • Vortex Ramp Integration Guide
  • Vortex SDK
  • Quotes
    • Create a new quote
      POST
    • Get existing quote
      GET
  • Ramp
    • Register new ramp process
      POST
    • Get ramp status
      GET
    • Update ramp process
      POST
    • Start ramp process
      POST
  • Account Management
    • Brazil
      • Brazilian KYC Process Overview
      • Get user's remaining transaction limits
        GET
      • Get user information
        GET
      • Get status of the last ramp event for a user
        GET
      • Create user or retry KYC
        POST
      • Get user's KYC status
        GET
      • Start KYC level 2 process for a user
        POST
    • Europe
      • Coming soon...
  • Supported Payment Methods
    GET
  • Supported Cryptocurrencies
    GET
  1. Brazil

Create user or retry KYC

POST
/v1/brla/createSubaccount
companyName, startDate and cnpj are only required when taxIdType is CNPJ
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vortexfinance.co/v1/brla/createSubaccount' \
--header 'Content-Type: application/json' \
--data-raw '{
    "phone": "string",
    "taxIdType": "CPF",
    "address": {
        "cep": "string",
        "city": "string",
        "state": "string",
        "street": "string",
        "number": "string",
        "district": "string",
        "complement": "string"
    },
    "fullName": "string",
    "cpf": "string",
    "birthdate": "2019-08-24",
    "companyName": "string",
    "startDate": "2019-08-24",
    "cnpj": "string"
}'
Response Response Example
200 - Example 1
{
    "subaccountId": "string"
}

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
Subaccount created or KYC retry initiated successfully.
Body

🟠400Bad Request
🔴500Server Error
Modified at 2025-06-06 10:55:10
Previous
Get status of the last ramp event for a user
Next
Get user's KYC status
Built with