Skip to main content
POST
/
v1
/
dict
/
keys
/
check
Check Keys Existence
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": "[email protected]"
    }
  ]
}
'
{
  "keys": [
    {
      "key": "+5561999999922",
      "hasEntry": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
keys
object[]
required

List of Pix keys to verify existence.

Required array length: 1 - 200 elements

Response

Keys check completed successfully.

keys
object[]