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?

Errors and Status

The Welcome to the Jungle Solutions API uses the following HTTP status codes:

Status Code

Meaning

400

Bad Request -- Your request is invalid

401

Unauthorized -- Your OAuth access_token is wrong

403

Forbidden -- Your not allowed to access this resource

404

Not Found -- Resource could not be found

405

Method Not Allowed -- You tried to use an endpoint with an invalid method

500

Internal Server Error -- We had a problem with our server. Try again later.

503

Service Unavailable -- We're temporarially offline for maintenance. Please try again later.

Error messages are returned in JSON format as described below:

{
  "error": "unauthorized",
  "error_description": "You are not member of this organization"
}

Error Codes

Meaning

not_found

Resource not found

validation_failed

Some parameters are invalid

unauthorized

You OAuth access_token is invalid

invalid_scope

OAuth access_token scope is not authorized

PreviousScopesNextJobs

Last updated 2 years ago

Was this helpful?

🏷️