GET
/api/v1/Wallet/{walletId}Cobrança · Carteiras
Método de visualização de uma carteira/convênio específica
Consulta api pelo identificador informado na rota.
Visão geral
Método de visualização de uma carteira/convênio específica.
Autenticação e pré-requisitos
Requer autenticação. Envie o token no header Authorization: Bearer {{token}} (JWT do AWS Cognito). Integrações servidor-a-servidor podem usar X-Api-Key. Todo tráfego é HTTPS e a credencial nunca vai na URL nem em query string.
Pré-requisitos: a rota exige identificador(es) de recurso já existente(s):
walletId— Id da wallet/convênio
Request
Parâmetros
| Nome | Em | Tipo | Obrigatório | Descrição | Exemplo |
|---|---|---|---|---|---|
walletId | path | string | obrigatório | Id da wallet/convênio | 3fa85f64-5717-4562-b3fc-2c963f66afa6 |
Corpo da requisição
Este endpoint não recebe corpo.
Response
Resposta 200.
Campos
| Campo | Tipo | Obrigatório | Descrição | Valores | Exemplo |
|---|---|---|---|---|---|
id | string | opcional | — | — | "texto" |
beneficiaryId | string | opcional | — | — | "3fa85f64-5717-4562-b3fc-2c963f66afa6" |
beneficiaryName | string | opcional | — | — | "Fulano de Tal" |
walletCode | integer (int64) | opcional | — | — | 0 |
bankAgency | string | opcional | — | — | "texto" |
bankAccount | string | opcional | — | — | "texto" |
bankAccountDebtCosts | string | opcional | — | — | "texto" |
bankSlipCosts | objeto | opcional | — | objeto — ver detalhe abaixo | { … } |
billingTypeValue | string | opcional | — | — | "texto" |
billingTypeValueDisplay | string | opcional | — | — | "texto" |
daysOverdueLimit | integer (int64) | opcional | — | — | 0 |
interestCodeValue | string | opcional | — | — | "texto" |
interestCodeValueDisplay | string | opcional | — | — | "texto" |
notificationRecepients | array de string | opcional | — | — | [ … ] |
createdAt | string (date-time) | opcional | — | — | "2025-08-11T13:45:00Z" |
enabled | boolean | opcional | — | — | true |
tenant | string | opcional | — | — | "texto" |
tenantDisplay | string | opcional | — | — | "texto" |
ownerUser | objeto | opcional | — | objeto — ver detalhe abaixo | { … } |
ownerGroup | objeto | opcional | — | objeto — ver detalhe abaixo | { … } |
pendingCost | integer (int64) | opcional | — | — | 0 |
pendingBilling | integer (int64) | opcional | — | — | 0 |
enableAutoSubmitToDebtCollection | boolean | opcional | — | — | true |
alias | string | opcional | — | — | "texto" |
Detalhe de bankSlipCosts
| Campo | Tipo | Obrigatório | Descrição | Valores | Exemplo |
|---|---|---|---|---|---|
register | integer (int64) | opcional | — | — | 0 |
cancellation | integer (int64) | opcional | — | — | 0 |
discount | integer (int64) | opcional | — | — | 0 |
changeDueDate | integer (int64) | opcional | — | — | 0 |
settlement | integer (int64) | opcional | — | — | 0 |
debtCollection | integer (int64) | opcional | — | — | 0 |
debtCollectionCancellation | integer (int64) | opcional | — | — | 0 |
debtCollectionSettlement | integer (int64) | opcional | — | — | 0 |
debtCollectionSuccess | integer (int64) | opcional | — | — | 0 |
transferRegister | integer (int64) | opcional | — | — | 0 |
transferCancellation | integer (int64) | opcional | — | — | 0 |
overDueCancellation | integer (int64) | opcional | — | — | 0 |
dataprevCostDisbursement | integer (int64) | opcional | — | — | 0 |
Detalhe de ownerUser
| Campo | Tipo | Obrigatório | Descrição | Valores | Exemplo |
|---|---|---|---|---|---|
userId | string | opcional | — | — | "3fa85f64-5717-4562-b3fc-2c963f66afa6" |
tenant | string | opcional | — | — | "texto" |
tenantDisplay | string | opcional | — | — | "texto" |
Detalhe de ownerGroup
| Campo | Tipo | Obrigatório | Descrição | Valores | Exemplo |
|---|---|---|---|---|---|
groupId | string | opcional | — | — | "3fa85f64-5717-4562-b3fc-2c963f66afa6" |
groupDisplay | string | opcional | — | — | "texto" |
tenant | string | opcional | — | — | "texto" |
tenantDisplay | string | opcional | — | — | "texto" |
Exemplo de resposta
{
"id": "texto",
"beneficiaryId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"beneficiaryName": "Fulano de Tal",
"walletCode": 0,
"bankAgency": "texto",
"bankAccount": "texto",
"bankAccountDebtCosts": "texto",
"bankSlipCosts": {
"register": 0,
"cancellation": 0,
"discount": 0,
"changeDueDate": 0,
"settlement": 0,
"debtCollection": 0,
"debtCollectionCancellation": 0,
"debtCollectionSettlement": 0,
"debtCollectionSuccess": 0,
"transferRegister": 0,
"transferCancellation": 0,
"overDueCancellation": 0,
"dataprevCostDisbursement": 0
},
"billingTypeValue": "texto",
"billingTypeValueDisplay": "texto",
"daysOverdueLimit": 0,
"interestCodeValue": "texto",
"interestCodeValueDisplay": "texto",
"notificationRecepients": [
"01310930"
],
"createdAt": "2025-08-11T13:45:00Z",
"enabled": true,
"tenant": "texto",
"tenantDisplay": "texto",
"ownerUser": {
"userId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"tenant": "texto",
"tenantDisplay": "texto"
},
"ownerGroup": {
"groupId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"groupDisplay": "texto",
"tenant": "texto",
"tenantDisplay": "texto"
},
"pendingCost": 0,
"pendingBilling": 0,
"enableAutoSubmitToDebtCollection": true,
"alias": "texto"
}Códigos de retorno
| Código | Significado | Detalhe do contrato |
|---|---|---|
200 | Requisição bem-sucedida. | — |
Exemplos
curl -X GET "{{baseUrl}}/api/v1/Wallet/3fa85f64-5717-4562-b3fc-2c963f66afa6" \
-H "Authorization: Bearer {{token}}"var baseUrl = "{{baseUrl}}";
var token = "{{token}}";
using var http = new HttpClient { BaseAddress = new Uri(baseUrl) };
http.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue("Bearer", token);
var rota = "/api/v1/Wallet/3fa85f64-5717-4562-b3fc-2c963f66afa6";
var resp = await http.GetAsync(rota);
resp.EnsureSuccessStatusCode();
var json = await resp.Content.ReadAsStringAsync();const baseUrl = '{{baseUrl}}';
const token = '{{token}}';
const resp = await fetch(`${baseUrl}/api/v1/Wallet/3fa85f64-5717-4562-b3fc-2c963f66afa6`, {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
const data = await resp.json();Troque apenas {{baseUrl}} e {{token}}. No Postman, defina-os como variáveis de environment; o cURL importa em Import > Raw text.
Downloads
Este endpoint já vem configurado nas collections abaixo, na pasta da etapa correspondente.
Collection completaConsignado privado e FGTS, em pastas espelhando a documentação.Baixar →Environment do PostmanAs variáveis fora da collection, para versionar uma sem versionar o token.Baixar →Documentação consolidada para LLMToda a documentação em um arquivo de texto, na ordem da navegação.Baixar →Referência em MarkdownEste contrato, campo a campo, gerado do spec.Baixar →
Guia de importação: Como importar no Postman · Todos os downloads: Downloads