To integrate the listing jobs using an API (via a GET request), you'll follow a few steps. First, you'll generate an API key using the settings tab, then you’ll use the API in your codebase to make a GET request to the endpoint. Here's a detailed guide on how to achieve this.Steps to Generate API and Make GET Request:#
Generate API Key:#
1.
Log in to your platform and navigate to the Settings tab.
2.
Go to the Company tab and find the API Key section.
3.
Copy the generated API key. This key will be used to authenticate your API requests.
Make GET Request:#
You'll need to send a GET request to the API endpoint using the API key and any required filter parameters. On this Job Listing page, you can view the payload and response schema of the Job Listing API.page (string, optional) – Page number to fetch. Example: 1
per_page (string, optional) – Number of items per page. Example: 10
job_filter[contract_type] (string, optional) – Contract type (case sensitive). Example: Permanent Position
job_filter[department] (string, optional) – Department name (case sensitive). Example: Other
job_filter[location] (string, optional) – City and country or country only (case sensitive). Example: Berlin,Germany
The values for department, contract_type, and city are case sensitive. Please ensure you use the exact casing as expected (e.g., "Sales", not "sales" or "SALES")