List the data that is processed by this organisation for the authenticated user

GET /data/me

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account string

      A organisation-unique identifier for the authenticated user. May be a UUID, email address, or otherwise

    • types array[string]
  • 401

    Unauthorized

    Hide response attributes Show response attributes object
    • error string

      Value is Unauthorized.

    • message string

      Value is You are not authorized. Generate authentication tokens via OAuth to access this resource..

GET /data/me
curl \
 -X GET http://api.example.com/data/me \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "account": "user@acme-corp.com",
  "types": [
    "LikeAction"
  ]
}
Response examples (200)
{
  "account": "user@acme-corp.com",
  "types": [
    "LikeAction"
  ]
}
Response examples (401)
{
  "error": "Unauthorized",
  "message": "You are not authorized. Generate authentication tokens via OAuth to access this resource."
}
Response examples (401)
{
  "error": "Unauthorized",
  "message": "You are not authorized. Generate authentication tokens via OAuth to access this resource."
}