Create GDPR data request

POST /v1/publishers/users/{userId}/gdpr-requests

Posts an access user data request for the specific user

Responses

  • 202 application/json

    Accepted

    Hide response attribute Show response attribute object
    • data object
      Hide data attribute Show data attribute
      • id integer Required

        the id assigned to the given request

  • 404

    User not found

  • 409

    Access Request already exist

POST /v1/publishers/users/{userId}/gdpr-requests
curl \
 -X POST https://api.bitlabs.ai/v1/publishers/users/{userId}/gdpr-requests \
 -H "X-S2S-Token: $API_KEY"
Response examples (202)
{
  "data": {
    "id": 42
  }
}