vacancies/list
Return a full list of vacancies.
This endpoint is accessed via the OAuth REST gateway using a method query parameter.
Request
Endpoint
GET https://v3.idibu.com/c/oauth/v1
Query Parameters
| Name | Type | Required? | Notes |
|---|---|---|---|
method | string | Yes | Must be vacancies/list |
Examples
cURL (recommended)
curl -sS \
-H "Authorization: Bearer <access_token>" \
-H "Accept: application/json" \
"https://v3.idibu.com/c/oauth/v1?method=vacancies/list"
Response
Returns a JSON payload containing the full list of vacancy IDs and titles.
[
{
"id": "12345",
"project": "Test Vacancy 1"
},
{
"id": "67890",
"project": "Test Vacancy 2"
}
]