PUT /v1/users/denylist/{identifyId}

Setting the Denylist flag to true will make Gainsight PX to ignore all of the user's events.

Path parameters

  • identifyId string Required

    User identify id

application/json

Body Required

Denied flag value

  • denied boolean

Responses

  • 200

    Updated

  • 204

    No Content

  • 400

    Bad request

  • 401

    Unauthorized or bad API Key

  • 403

    Access denied

  • 404

    User not found by id

  • 429

    Rate limit exceeded

PUT /v1/users/denylist/{identifyId}
curl \
 --request PUT 'https://api.aptrinsic.com/v1/users/denylist/{identifyId}' \
 --header "Content-Type: application/json" \
 --data '{"denied":true}'
Request examples
{
  "denied": true
}