Welcome to the Jungle Solutions API
  • Introduction
  • 🔓Authentication
  • 🔭Scopes
  • 🏷️Errors and Status
  • Jobs API
    • Jobs
      • Jobs dependencies
        • Languages
        • List available professions
      • List all jobs
      • List organization's jobs
      • Retrieve a job
      • Create a job
      • Update a job
      • Update a job status
    • Departments
      • List departments
      • Create a department
      • Update a department
      • Retrieve a department
    • Offices
      • List offices
      • Create an office
      • Update an office
      • Retrieve an office
  • Candidates API
    • Candidates
      • List candidates
      • Retrieve a candidate
      • Create a candidate
      • Update a candidate
    • Comment
    • Emails
      • List candidate emails
      • Create an email
    • Documents
      • List candidate documents
      • Attach documents to a candidate
    • Current user
  • Employer branding API
    • Organizations
      • Retrieve Organization's info
      • List organizations
    • Images
    • videos
    • Embed
    • Tools
    • Sectors
  • Analytics API
    • Moves
  • Media API
    • WTTJ articles
  • ⁉️FAQ
Powered by GitBook
On this page

Was this helpful?

  1. Candidates API

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

Name
Type
Description

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"

PreviousAttach documents to a candidateNextOrganizations

Last updated 3 years ago

Was this helpful?