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. Jobs API
  2. Jobs
  3. Jobs dependencies

List available professions

This endpoint lets you access to the list of all active professions.

This endpoint just requires a valid token.

profession list

GET https://www.welcomekit.co/api/v1/external/professions

In order to In order to create a job, you will need a profession_reference. Professions are used to organized job offers on Welcome to the Jungle, careers websites and other potential job boards.

Query Parameters

Name
Type
Description

page

integer

Page offset

per_page

integer

Number of professions per page

[
    {
        "fullname_translations": {
            "fr": "Business  > Business Development",
            "es": "Negocios  > Desarrollo de negocio",
            "en": "Business  > Business Development",
        },
        "fullname": "Business  > Business Development",
        "reference": "business_development"
    },
    {
        "fullname_translations": {
            "fr": "Business  > Acheteur",
            "es": "Negocios  > Compras",
            "en": "Business  > Purchasing",
        },
        "fullname": "Business  > Purchasing",
        "reference": "purchasing"
    },
    {
        "fullname_translations": {
            "fr": "Business  > Commercial",
            "es": "Negocios  > Comercial",
            "en": "Business  > Sales",
        },
        "fullname": "Business  > Sales",
        "reference": "sales"
    },
    ...
]

Request example

curl -X GET -G "https://www.welcomekit.co/api/v1/external/professions" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer WK_API_KEY"
PreviousLanguagesNextList all jobs

Last updated 3 years ago

Was this helpful?