Skip to main content
GET
https://api.sandbox.wepayout.com.br
/
v2
/
register
/
companies
/
{id}
Get Account Opening Request By ID
curl --request GET \
  --url https://api.sandbox.wepayout.com.br/v2/register/companies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "company": {
    "legal_name": "Acme Tech LTDA",
    "trade_name": "Acme Tech",
    "tax_id": "11222333000181",
    "contacts": [
      {
        "name": "João Silva",
        "email": "joao@acme.com",
        "phone": "+5511999999999",
        "tax_id": "12345678901",
        "role": "administrator"
      },
      {
        "name": "Maria Silva",
        "email": "maria.silva@acme.com",
        "phone": "+5511999999999",
        "tax_id": "12345678000",
        "role": "legal_representative"
      }
    ],
    "address": [
      {
        "city": "São Paulo",
        "state": "SP",
        "country": "Brasil",
        "zip_code": "01234-567",
        "street": "Rua das Flores",
        "number": "123",
        "complement": "Sala 1"
      }
    ]
  },
  "status": "active",
  "status_history": [
    {
      "status": "pending",
      "created_at": "2024-01-01T10:00:00.000000Z"
    },
    {
      "status": "due_diligence_review",
      "created_at": "2024-01-02T10:00:00.000000Z"
    },
    {
      "status": "active",
      "created_at": "2024-01-03T10:00:00.000000Z"
    }
  ],
  "account_id": 999900,
  "created_at": "2024-01-01T10:00:00.000000Z",
  "updated_at": "2024-01-03T10:00:00.000000Z"
}

Path Parameters

id
string
required
Unique identifier of the account opening request

Response Body

id
string
Unique identifier of the account opening request
company
object
Company information
status
string
Current status of the account opening requestValues: pending, due_diligence_review, active, inactive, canceled, closed
status_history
array
List of all previous status changes for the request
account_id
integer
Identifier of the account linked after approval
created_at
string
Date and time when the account opening request was created
updated_at
string
Date and time when the request was last updated

Request Example

curl --request GET \
  --url https://api.sandbox.wepayout.com.br/v2/register/companies/{id} \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "company": {
    "legal_name": "Acme Tech LTDA",
    "trade_name": "Acme Tech",
    "tax_id": "11222333000181",
    "contacts": [
      {
        "name": "João Silva",
        "email": "joao@acme.com",
        "phone": "+5511999999999",
        "tax_id": "12345678901",
        "role": "administrator"
      },
      {
        "name": "Maria Silva",
        "email": "maria.silva@acme.com",
        "phone": "+5511999999999",
        "tax_id": "12345678000",
        "role": "legal_representative"
      }
    ],
    "address": [
      {
        "city": "São Paulo",
        "state": "SP",
        "country": "Brasil",
        "zip_code": "01234-567",
        "street": "Rua das Flores",
        "number": "123",
        "complement": "Sala 1"
      }
    ]
  },
  "status": "active",
  "status_history": [
    {
      "status": "pending",
      "created_at": "2024-01-01T10:00:00.000000Z"
    },
    {
      "status": "due_diligence_review",
      "created_at": "2024-01-02T10:00:00.000000Z"
    },
    {
      "status": "active",
      "created_at": "2024-01-03T10:00:00.000000Z"
    }
  ],
  "account_id": 999900,
  "created_at": "2024-01-01T10:00:00.000000Z",
  "updated_at": "2024-01-03T10:00:00.000000Z"
}