# Export every open UNDP job posting with full descriptions

**Use case:** 

Pulls every open requisition from UNDP's Oracle Recruiting Cloud careers site (estm.fa.em2.oraclecloud.com, site CX_1) - 120 postings on 2026-09-25 - with the full description as clean text, category and schedule where UNDP sets them, primary and secondary locations, posting date and the posting link. Remuneration text is parsed where UNDP publishes a band (1 of 120 postings did).

## Input

```json
{
  "careersUrls": [
    "https://estm.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/requisitions"
  ],
  "preset": "none",
  "keyword": "",
  "sortBy": "POSTING_DATES_DESC",
  "includeDetails": true,
  "maxJobsPerSite": 500,
  "detailConcurrency": 5,
  "onlyNewSinceLastRun": false,
  "maxRunSeconds": 240
}
```

## Output

```json
{
  "employer": {
    "label": "Employer",
    "format": "text"
  },
  "title": {
    "label": "Job title",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "primaryLocation": {
    "label": "Primary location",
    "format": "text"
  },
  "secondaryLocations": {
    "label": "Other locations",
    "format": "array"
  },
  "workplaceType": {
    "label": "Workplace",
    "format": "text"
  },
  "jobSchedule": {
    "label": "Schedule",
    "format": "text"
  },
  "postingDate": {
    "label": "Posted",
    "format": "text"
  },
  "salaryText": {
    "label": "Salary (as written)",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "requisitionId": {
    "label": "Req ID",
    "format": "text"
  },
  "url": {
    "label": "Posting",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Oracle Recruiting Cloud Jobs Scraper - oraclecloud.com Careers](https://apify.com/maydit/oracle-recruiting-jobs-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maydit/oracle-recruiting-jobs-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/maydit/oracle-recruiting-jobs-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
