Current user

This endpoint lets you get:

  • Information about the current user

  • All organizations this user has access to (it requires organization_r)

  • All jobs related to these organizations (it requires jobs_r)

  • All stages (aka columns) related to these jobs

This endpoint requires me_r scope.

current user

GET https://www.welcomekit.co/api/v1/external/users/current

This endpoint allows you to get free cakes.

Query Parameters

NameTypeDescription

organizations

boolean

Include organizations

jobs

boolean

Include jobs

stages

boolean

Include jobs stages

{
  "avatar_url": "https://www.welcomekit.co/uploads/user/image/GXj/J/avatar.jpg",
  "display_name": "Foo Bar"
}

Request example

curl -X GET -G "https://www.welcomekit.co/api/v1/external/users/current" \
    -H "Content-Type: application/json" \
    -H "Authorization: bearer WK_API_KEY"

Last updated