# Build a Workday Customer List for Sales

**Use case:** 

Turn Workday adoption into a sales list. Get every company on Workday with its careers URL, tenant, and open-role count as JSON. No key needed.

## Input

```json
{
  "companies": [
    "nvidia",
    "kla"
  ],
  "discoverAll": true,
  "maxResults": 50,
  "verifyLive": true,
  "includeInactive": false,
  "crawlDepth": 2
}
```

## Output

```json
{
  "tenant": {
    "label": "Tenant",
    "format": "string"
  },
  "companyName": {
    "label": "Company Name",
    "format": "string"
  },
  "datacenter": {
    "label": "Datacenter",
    "format": "string"
  },
  "siteSlug": {
    "label": "Site Slug",
    "format": "string"
  },
  "totalJobs": {
    "label": "Open Jobs",
    "format": "integer"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "careersUrl": {
    "label": "Careers URL",
    "format": "string"
  },
  "apiUrl": {
    "label": "Jobs API URL",
    "format": "string"
  },
  "slugSource": {
    "label": "Slug Source",
    "format": "string"
  },
  "discoveredAt": {
    "label": "Discovered At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Workday Career Sites API](https://apify.com/johnvc/workday-career-sites-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/workday-career-sites-api) to learn more, explore other use cases, and run it yourself.