Listagem de chaves Pix de um Alias
Request
ENDPOINT
/account/ACCOUNT_KEY/alias/ALIAS_KEY/pix_keyMÉTODO
GETPath Params
Campo | Tipo | Descrição | Caracteres |
---|---|---|---|
account_key | string | Chave única da conta. | 36 |
alias_key | string | Chave única do alias. | 36 |
Tipos de Chave Pix
A “pix_key” é do tipo Chave Aleatória (UUID4), seguindo a seguinte formatação:
Chave Aleatória: UUID4.
Query Params
Campo | Tipo | Descrição | Caracteres |
---|---|---|---|
page_number | integer | Página atual que está sendo consultada. | - |
page_size | integer | Quantidade de resultados por página. | - |
Response
STATUS
200Response Body: Chave Ativa
{
"data": [
{
"pix_key": "ecdb1790-667f-42ab-b319-fbc838a04672",
"pix_key_type": "random_key",
"pix_key_status": "active",
"created_at": "2021-10-22T20:30:23.459Z"
},
{
"pix_key": "f5eb52c1-5247-4de3-9982-f4f0ee9edad4",
"pix_key_type": "random_key",
"pix_key_status": "active",
"created_at": "2021-12-06T21:16:12.123Z"
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"rows_per_page": 10
}
}
Response Body Params
Campo | Tipo | Descrição | Max. Caracteres |
---|---|---|---|
pix_key | string | Chave Pix. | 77 |
pix_key_type | string | Tipo da chave Pix. Pode ser "random_key" | 10 |
pix_key_status | string | Status de ativação da chave Pix. Pode ser "active","inactive" ou "pending" | 8 |
created_at | datetime Zulu | Data de criação da requisição. | 20 |
STATUS
4XXResponse Body: Error
{
"title": "titulo",
"description": "description in English",
"translation": "descrição em portugues",
"code": "codigo",
"extra_fields": {}
}
Código HTTP | Código QIcode | Títulotitle | Descrição (eng)Description | Descrição (ptbr)translation |
---|---|---|---|---|
403 | PIX000080 | Not enough permission | The selected agent is not an Pix Indirect Participant | O agente selecionado não é um Participante Indireto do Pix |
404 | PIX000082 | Alias not found | Alias {alias_key} not found | Alias {alias_key} não encontrado |
400 | PIX000088 | Page size too large | Requested page size above limit of {max_page_size} | Tamanho de página requerido acima do limite de {max_page_size} |
400 | PIX000089 | Invalid value for params | Page Size and Page Number must be integers | age Size e Page Number devem ser números inteiros |