Skip to main content
GET
/
api
/
v1
/
company
cURL
curl -X GET 'https://api.quantumpay.com.br/api/v1/company' \
  -H 'Authorization: Bearer SEU_TOKEN_JWT'
{
  "success": true,
  "data": {
    "company": {
      "id": "comp_abc123def456ghi789",
      "name": "Empresa Exemplo Ltda",
      "document": "12345678000199",
      "fantasyName": "Exemplo Corp",
      "status": "active"
    },
    "sellers": [
      {
        "id": "seller_xyz789uvw012",
        "name": "João Silva",
        "email": "joao.silva@exemplo.com",
        "document": "12345678901"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Token JWT no cabeçalho Authorization

Response

Detalhes da empresa retornados com sucesso

success
boolean

Indica se a operação foi bem-sucedida

Example:

true

data
object