Skip to main content
GET
/
v1
/
self
/
Fetch the user data of the authenticated user
curl --request GET \
  --url https://api.arklow.io/v1/self/ \
  --header 'x-arklow-auth: <api-key>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "memberships": [
      {
        "org_id": "<string>",
        "permissions": [
          "<string>"
        ]
      }
    ],
    "deleted_at": "2023-11-07T05:31:56Z"
  },
  "errors": [
    {
      "code": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

x-arklow-auth
string
header
required

Response

200 - application/json

Default Response

data
object
required
errors
object[] | null
required