Skip to main content

List Jobs


GET services/api/v1/jobs

Returns a list of job openings.

Optional Query Parameters

ParameterTypeDescription
type_ofstringFilter jobs by their assigned status. Possible values are: ["draft", "archived", "active_published", "active_closed"].
created_at_sincetimestampOnly return job openings that have been created since the specified timestamp.
updated_at_sincetimestampOnly return job openings that have been updated since the specified timestamp.

Response

Results list.

{
"entries": [
{
"id": "Gqzr56Z5",
"created_at": "2024-08-24T00:00:00.000Z",
"updated_at": "2024-09-12T10:18:11.940Z",
"published_at": "2024-09-06",
"reference": null,
"type_of": "active_pubished",
"unlimited_duration": true,
"valid_until": null,
"header_image_url": null,
"languages": ["en", "it"],
"title_en": "Project Manager (m/f/d)",
"title_it": "Capo progetto (m/f/d)",
"description_en": "<h3>Summary</h3>\n<p style=\"text-align: justify;\">Lorem ipsum dolor</p>"
"description_it": "<h3>Descrizione</h3>\n<p style=\"text-align: justify;\">Lorem ipsum dolor</p>"
"contact_person": "Daniela Rossi",
"contact_email": "daniela.rossi@onboard.org",
"contact_phone": "+39 1234567890",
...
},
{
"id": "Gqzr56Z5",
"created_at": "2023-05-23T03:10:15.000Z",
"updated_at": "2023-05-23T03:10:18.321Z",
"published_at": null,
"reference": null,
"type_of": "draft",
"unlimited_duration": true,
"valid_until": null,
"header_image_url": null,
"languages": ["en"],
"title_en": "Customer Support Assistant (m/f/d)",
"description_en": "<h3>Summary</h3>\n<p style=\"text-align: justify;\">Lorem ipsum dolor</p>"
"contact_person": "Daniela Rossi",
"contact_email": "daniela.rossi@onboard.org",
"contact_phone": "+39 1234567890",
...
}
],
"current_page": 1,
"per_page": 30,
"total_entries": 2
}