curl -X GET "https://api.owem.com.br/v4/i/baas/onboarding/all?limit=50&offset=0" \
-H "Authorization: Basic $(echo -n 'SUA_API_KEY:SEU_SECRET' | base64)"
{
"requestId": "a867c780-fb94-44a9-a058-1af78c7d41c9",
"success": true,
"size": 2,
"pagination": {
"total": 2,
"limit": 50,
"offset": 0
},
"data": [
{
"userId": "usr_abc123def456",
"clientCode": "baas_x7k2m9p1",
"status": "ACCOUNT_CREATED",
"cpf": "12345678900",
"name": "João da Silva",
"email": "[email protected]",
"onboardingType": "liveness",
"hasAccount": true,
"createdAt": 1768245117000,
"updatedAt": 1768252317000
},
{
"userId": "usr_xyz789ghi012",
"clientCode": "baas_y8l3n0q2",
"status": "PENDING_EMAIL_VERIFICATION",
"cpf": "98765432100",
"name": "Maria Santos",
"email": "[email protected]",
"onboardingType": "manual",
"hasAccount": false,
"createdAt": 1768252800000,
"updatedAt": 1768252800000
}
]
}
Lista todas as propostas de onboarding do parceiro BAAS.
curl -X GET "https://api.owem.com.br/v4/i/baas/onboarding/all?limit=50&offset=0" \
-H "Authorization: Basic $(echo -n 'SUA_API_KEY:SEU_SECRET' | base64)"
{
"requestId": "a867c780-fb94-44a9-a058-1af78c7d41c9",
"success": true,
"size": 2,
"pagination": {
"total": 2,
"limit": 50,
"offset": 0
},
"data": [
{
"userId": "usr_abc123def456",
"clientCode": "baas_x7k2m9p1",
"status": "ACCOUNT_CREATED",
"cpf": "12345678900",
"name": "João da Silva",
"email": "[email protected]",
"onboardingType": "liveness",
"hasAccount": true,
"createdAt": 1768245117000,
"updatedAt": 1768252317000
},
{
"userId": "usr_xyz789ghi012",
"clientCode": "baas_y8l3n0q2",
"status": "PENDING_EMAIL_VERIFICATION",
"cpf": "98765432100",
"name": "Maria Santos",
"email": "[email protected]",
"onboardingType": "manual",
"hasAccount": false,
"createdAt": 1768252800000,
"updatedAt": 1768252800000
}
]
}
curl -X GET "https://api.owem.com.br/v4/i/baas/onboarding/all?limit=50&offset=0" \
-H "Authorization: Basic $(echo -n 'SUA_API_KEY:SEU_SECRET' | base64)"
baas:onboarding é configurado pela Owem na sua API Key.Authorization: Basic {Base64(API_KEY:API_SECRET)}
| Header | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| Authorization | string | ✅ | Basic Auth (API Key + Secret em Base64) |
| Parâmetro | Tipo | Obrigatório | Default | Descrição |
|---|---|---|---|---|
| limit | number | ❌ | 50 | Máximo de resultados (1-100) |
| offset | number | ❌ | 0 | Paginação (início dos resultados) |
| status | string | ❌ | - | Filtrar por status específico |
| Status | Descrição |
|---|---|
| PENDING_EMAIL_VERIFICATION | Aguardando verificação de email |
| PENDING_DOCUMENTS | Aguardando verificação KYC |
| PROCESSING | Em análise pelo sistema |
| APPROVED | KYC aprovado |
| REPROVED | KYC reprovado |
| ACCOUNT_CREATED | Conta bancária criada com sucesso |
{
"requestId": "a867c780-fb94-44a9-a058-1af78c7d41c9",
"success": true,
"size": 2,
"pagination": {
"total": 2,
"limit": 50,
"offset": 0
},
"data": [
{
"userId": "usr_abc123def456",
"clientCode": "baas_x7k2m9p1",
"status": "ACCOUNT_CREATED",
"cpf": "12345678900",
"name": "João da Silva",
"email": "[email protected]",
"onboardingType": "liveness",
"hasAccount": true,
"createdAt": 1768245117000,
"updatedAt": 1768252317000
},
{
"userId": "usr_xyz789ghi012",
"clientCode": "baas_y8l3n0q2",
"status": "PENDING_EMAIL_VERIFICATION",
"cpf": "98765432100",
"name": "Maria Santos",
"email": "[email protected]",
"onboardingType": "manual",
"hasAccount": false,
"createdAt": 1768252800000,
"updatedAt": 1768252800000
}
]
}
| Campo | Tipo | Descrição |
|---|---|---|
| userId | string | ID único da proposta/usuário |
| clientCode | string | Código interno (formato: baas_xxxxxxxx) |
| status | string | Status atual da proposta |
| cpf | string | CPF do cliente (sem formatação) |
| name | string | Nome completo do cliente |
| string | Email do cliente | |
| onboardingType | string | Tipo: liveness ou manual |
| hasAccount | boolean | Se já possui conta bancária criada |
| createdAt | number | Timestamp de criação (ms) |
| updatedAt | number | Timestamp da última atualização (ms) |
| Campo | Tipo | Descrição |
|---|---|---|
| total | number | Total de propostas do parceiro |
| limit | number | Limite usado na consulta |
| offset | number | Offset usado na consulta |
| Código | Descrição |
|---|---|
| 400 | Parâmetros inválidos |
| 403 | API Key não autorizada |
{
"requestId": "a867c780-fb94-44a9-a058-1af78c7d41c9",
"success": true,
"size": 2,
"pagination": {
"total": 2,
"limit": 50,
"offset": 0
},
"data": [
{
"userId": "usr_abc123def456",
"clientCode": "baas_x7k2m9p1",
"status": "ACCOUNT_CREATED",
"cpf": "12345678900",
"name": "João da Silva",
"email": "[email protected]",
"onboardingType": "liveness",
"hasAccount": true,
"createdAt": 1768245117000,
"updatedAt": 1768252317000
},
{
"userId": "usr_xyz789ghi012",
"clientCode": "baas_y8l3n0q2",
"status": "PENDING_EMAIL_VERIFICATION",
"cpf": "98765432100",
"name": "Maria Santos",
"email": "[email protected]",
"onboardingType": "manual",
"hasAccount": false,
"createdAt": 1768252800000,
"updatedAt": 1768252800000
}
]
}
Was this page helpful?