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

Languages

This endpoint allows you to get an active language list.

This endpoint just requires a valid token.

language list

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

In order to create a job, you will need a language. This endpoint lets you access to the list of all active languages.

Query Parameters

Name
Type
Description

page

integer

Page offset

[
    {
        "name": "English",
        "reference": "en"
    },
    {
        "name": "French",
        "reference": "fr"
    },
    {
        "name": "Spanish; Castilian",
        "reference": "es"
    }
]

Request example

curl -X GET "https://www.welcomekit.co/api/v1/external/languages" \
    -H "Content-Type: application/json" \
    -H "Authorization: bearer WK_API_KEY"
PreviousJobs dependenciesNextList available professions

Last updated 3 years ago

Was this helpful?