Pular para o conteúdo principal
POST
/
v1
/
dict
/
keys
/
check
Verificar Existência de Chaves
curl --request POST \
  --url https://plugin-pix-indirect.api.lerian.net/v1/dict/keys/check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "keys": [
    {
      "key": "+5561999999922"
    },
    {
      "key": "john.doe@example.com"
    }
  ]
}
'
{
  "keys": [
    {
      "key": "+5561999999922",
      "hasEntry": true
    }
  ]
}

Autorizações

Authorization
string
header
obrigatório

Header de autenticação Bearer no formato Bearer <token>, onde <token> é o seu token de acesso JWT.

Corpo

application/json
keys
object[]
obrigatório

Lista de chaves PIX para verificar existência.

Required array length: 1 - 200 elements

Resposta

Verificação de chaves concluída com sucesso.

keys
object[]