GET /v1/users/denylist/{identifyId}

Returns true if the user is marked as denied

Path parameters

  • identifyId string Required

    User identify id

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • denied boolean
    • identifyId string
  • 204 */*

    No Content

    Hide response attributes Show response attributes object
    • denied boolean
    • identifyId string
  • 400

    Bad request

  • 401

    Unauthorized or bad API Key

  • 403

    Access denied

  • 404

    User not found by id

  • 429

    Rate limit exceeded

GET /v1/users/denylist/{identifyId}
curl \
 --request GET 'https://api.aptrinsic.com/v1/users/denylist/{identifyId}'
Response examples (200)
{
  "denied": true,
  "identifyId": "string"
}
Response examples (204)
{
  "denied": true,
  "identifyId": "string"
}