Skip to main content
GET
/
v1
/
gdpr
/
requests
List GDPR requests
curl --request GET \
  --url https://public-api.sessionboard.com/v1/gdpr/requests \
  --header 'x-access-token: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "org_id": "<string>",
      "request_type": "<string>",
      "identity_type": "<string>",
      "identity_value": "<string>",
      "status": "<string>",
      "matching_user_exists": true,
      "response": {
        "users": [
          123
        ],
        "org_users": [
          "<string>"
        ],
        "event_users": [
          123
        ],
        "contact_records": [
          "<string>"
        ]
      },
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

x-access-token
string
header
required

API key for authentication. Obtain from the Sessionboard admin dashboard.

Response

OK

data
object[]