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?

Authentication

Welcome to the Jungle Solutions uses OAuth tokens to allow access to the API. We expect the OAuth token to be included in all API requests:

  • 1/ Either in a header that looks like the following: Authorization: Bearer WK_API_KEY

  • 2/ Or, through query string: ?access_token=WK_API_KEY

You must replace WK_API_KEY with your personal API key.

curl "WK_API_ENDPOINT_HERE"
  -H "Authorization: Bearer WK_API_KEY"
PreviousIntroductionNextScopes

Last updated 2 years ago

Was this helpful?

🔓