# International Paper jobs to CSV with salary and descriptions

**Use case:** 

Returns the 50 newest postings from International Paper's Oracle Recruiting Cloud careers site (about 460 open on 2026-09-25) with the full description as clean text and the pay line parsed out of it: salaryText as written ('$89,000 - $118,600', '$33.05/hr - $39.61') plus salaryMin and salaryMax. On the verification run 46 of the 50 rows carried a pay line and 34 of them a full min-max range.

## Input

```json
{
  "careersUrls": [
    "https://iazbqy.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/requisitions"
  ],
  "preset": "none",
  "keyword": "",
  "sortBy": "POSTING_DATES_DESC",
  "includeDetails": true,
  "maxJobsPerSite": 50,
  "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`).
