Saltar al contenido principal
POST
/
v1
/
dict
/
keys
/
check
Verificar Existencia de Claves
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 } ] }

Autorizaciones

Authorization
string
header
requerido

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Cuerpo

application/json
keys
object[]
requerido

Lista de claves Pix para verificar existencia.

Required array length: 1 - 200 elements

Respuesta

Verificación de claves completada exitosamente.

keys
object[]