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"
}
Retrieve a single account opening request using its unique identifier. Returns all details of the request including company information, contacts, addresses, status, and history.
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"
}
Show Company Details
Show Contact
administrator, legal_representative, financial, commercialpending, due_diligence_review, active, inactive, canceled, closedcurl --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"
}
Was this page helpful?