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. Employer branding API

Sectors

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

This endpoint just requires a valid token.

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

Query Parameters

Name
Type
Description

per_page

integer

Page offset

page

integer

Number of sectors per page

[
    {
        "id": "2",
        "fullname": {
            "es": "TecnologĂ­a > Big data",
            "en": "Tech > Big data",
            "fr": "Tech > Big data"
        },
        "parent": {
            "es": "TecnologĂ­a",
            "en": "Tech",
            "fr": "Tech",
            "_id": "1"
        },
        "names": {
            "es": "Big data",
            "en": "Big data",
            "fr": "Big data"
        },
        "reference": "big_data"
    },
    {
        "id": "3",
        "fullname": {
            "es": "TecnologĂ­a > Software",
            "en": "Tech > Software",
            "fr": "Tech > Logiciels"
        },
        "parent": {
            "es": "TecnologĂ­a",
            "en": "Tech",
            "fr": "Tech",
            "_id": "1"
        },
        "names": {
            "es": "Software",
            "en": "Software",
            "fr": "Logiciels"
        },
        "reference": "software"
    }
    ...
]

Request example

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

Last updated 3 years ago

Was this helpful?