# Impact.com Affiliate API - Campaigns, Catalogs, Reports (`viralanalyzer/impact-affiliate-network`) Actor

Query Impact.com Publisher API: campaigns, product catalogs, ads, promo codes, actions, 60+ reports. Multi-vertical affiliate network (Walmart, Target, Microsoft, etc).

- **URL**: https://apify.com/viralanalyzer/impact-affiliate-network.md
- **Developed by:** [viralanalyzer](https://apify.com/viralanalyzer) (community)
- **Categories:** Lead generation, E-commerce
- **Stats:** 2 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 item scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 🌐 Impact.com Affiliate Network — Campaigns, Catalogs, Reports API (BYOC)

> 🔗 [View on Apify Store](https://apify.com/viralanalyzer/impact-affiliate-network) | 🇺🇸 English | [🇧🇷 Português](#português)

Query the **Impact.com Publisher API** (`api.impact.com`) for campaigns, product catalogs, ads, promo codes, transactions, and 60+ canned reports. **BYOC (Bring Your Own Credentials)** — you provide your Impact Account SID + Auth Token. Used by Walmart, Target, Microsoft, Adobe, Levi's, Airbnb, and thousands of other major brands as their affiliate platform.

### ✨ Features

- **Official Impact REST API** — HTTPS, HTTP Basic auth (SID:Token), no scraping
- **8 query types** covering the full publisher lifecycle:
  - `AccountInfo` — your account details (sanity-check creds; always works)
  - `Campaigns` — list joined advertisers
  - `Catalogs` — product feeds of joined advertisers
  - `Ads` — creative assets (banners, text links) of joined advertisers
  - `PromoCodes` — active coupons from joined advertisers
  - `Actions` — your own transactions / conversions
  - `Reports` — list 60+ available report definitions (always populated)
  - `RunReport` — execute a specific report by `reportId` with optional date range + custom params
- **Built-in pagination** — `pageSize` (max 100 for most endpoints, 1000 for reports) + `page`
- **Date range filters** — `startDate` / `endDate` for Actions and RunReport
- **Custom report parameters** — arbitrary `customParams` object for advanced report calls (e.g. `{ AdvertiserId: "12345" }`)
- **Auth-only** — no proxy needed (no IP-based anti-bot on Impact's API)
- **NEVER 0 ITEMS guard** — fails with explicit message if no rows returned

### 🔑 BYOC setup (one-time, ~5 min)

1. Sign in to https://app.impact.com (you need an Impact Publisher account; sign-up is free if you have an audience/site)
2. Go to **Account Settings > API Authentication**
3. Copy your **Account SID** (~30 characters, starts with `IR`)
4. Copy your **Auth Token** (treat as a password)
5. Paste both into the actor input (both are marked secret)

> Auth model: HTTP Basic — `Authorization: Basic base64(SID:Token)`. The SID is sent as the username, the Token as the password.

### 📥 Input

| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| `accountSid` | string (secret) | **Yes** | — | Your Impact Account SID (starts with `IR`) |
| `authToken` | string (secret) | **Yes** | — | Your Impact Auth Token |
| `queryType` | enum | No | `Reports` | One of: `AccountInfo`, `Campaigns`, `Catalogs`, `Ads`, `PromoCodes`, `Actions`, `Reports`, `RunReport` |
| `pageSize` | integer | No | `50` | Items per page (max 100 most endpoints, 1000 for RunReport) |
| `page` | integer | No | `1` | Page number |
| `reportId` | string | No* | `""` | Required when `queryType=RunReport` (e.g. `mp_action_listing_fast`) |
| `startDate` | string | No | `""` | YYYY-MM-DD for Actions / RunReport |
| `endDate` | string | No | `""` | YYYY-MM-DD for Actions / RunReport |
| `customParams` | object | No | `{}` | Extra query params for RunReport (key/value) |

#### Input example (JSON) — discover available reports

```json
{
  "accountSid": "IRxxxxxxxxxxxxxxxxxxxxxxxx",
  "authToken": "your_auth_token_here",
  "queryType": "Reports",
  "pageSize": 100
}
````

#### Input example (JSON) — pull last 30 days of conversions

```json
{
  "accountSid": "IRxxxxxxxxxxxxxxxxxxxxxxxx",
  "authToken": "your_auth_token_here",
  "queryType": "Actions",
  "startDate": "2026-04-15",
  "endDate": "2026-05-15",
  "pageSize": 100
}
```

#### Input example (JSON) — execute the fast-action-listing report

```json
{
  "accountSid": "IRxxxxxxxxxxxxxxxxxxxxxxxx",
  "authToken": "your_auth_token_here",
  "queryType": "RunReport",
  "reportId": "mp_action_listing_fast",
  "startDate": "2026-05-01",
  "endDate": "2026-05-15",
  "customParams": {
    "AdvertiserId": "12345"
  }
}
```

### 📤 Output

Output schema varies by `queryType`. Example `Campaigns` output:

```json
{
  "queryType": "Campaigns",
  "campaignId": "12345",
  "campaignName": "Walmart - US Affiliate Program",
  "advertiserName": "Walmart",
  "isMobileEnabled": true,
  "campaignDescription": "Earn commission on Walmart.com purchases...",
  "contractStatus": "ACTIVE",
  "contractStartDate": "2024-08-15",
  "payoutType": "FLAT_PERCENTAGE",
  "publicCommissionStructure": "1-4% per category",
  "scrapedAt": "2026-05-15T14:30:00Z"
}
```

Example `PromoCodes` output:

```json
{
  "queryType": "PromoCodes",
  "promoCodeId": "98765",
  "campaignId": "12345",
  "advertiserName": "Target",
  "code": "SAVE15",
  "description": "15% off home goods orders $50+",
  "discountAmount": 15.0,
  "discountType": "PERCENTAGE",
  "startDate": "2026-05-01",
  "endDate": "2026-05-31",
  "destinationUrl": "https://goto.target.com/...",
  "scrapedAt": "2026-05-15T14:30:00Z"
}
```

### 💰 Pricing

Pay-per-event (`item-scraped`): charged once per row returned. Zero-result queries do **not** charge.

### 🚀 Use cases

- **Bulk-pull conversion data** — pull Actions/Reports into your own data warehouse for attribution analysis
- **Active coupon discovery** — `PromoCodes` query lists every live promo across all joined advertisers
- **Campaign roster** — daily snapshot of which advertisers you've joined and their commission structures
- **Catalog refresh** — pull product feeds for advertisers (Walmart, Target, etc.) for affiliate site catalogs
- **Custom analytics** — RunReport with `customParams` to slice by AdvertiserId / Campaign / DateRange

### ⚠️ Common errors

| Error | Cause | Fix |
|---|---|---|
| `[IMPACT_API] 401 on /Mediapartners/...` | SID or Token wrong | Verify both at app.impact.com > Account Settings > API Authentication |
| `[IMPACT_API] 403 Forbidden` | Token revoked OR account suspended | Regenerate token; contact Impact support if suspended |
| `[IMPACT_API] 404 on Reports/{reportId}` | reportId doesn't exist or you lack access | Run `queryType=Reports` first to get the list of available IDs |
| `[FAIL] Zero items returned` | Date range too narrow OR no joined advertisers | Widen date range; verify `Campaigns` returns rows |
| `Mediapartners SID format error` | SID missing the `IR` prefix | Use the full SID exactly as shown in Impact Console |

### 🔒 Privacy

Your SID and Auth Token are sent directly to `api.impact.com` over HTTPS as HTTP Basic. We never store, log, or proxy them through our servers. Mark both fields as secret in Apify Console.

### 📚 Related actors

- [CJ Affiliate Products](https://apify.com/viralanalyzer/cj-affiliate-products) — Commission Junction GraphQL (BYOC)
- [Rakuten Affiliate Merchants](https://apify.com/viralanalyzer/rakuten-affiliate-merchants) — Rakuten Advertising API (BYOC)
- [Awin Multi-Merchant](https://apify.com/viralanalyzer/awin-multi-merchant-affiliate) — Awin Publisher API (BYOC)
- [Etsy Product Intelligence](https://apify.com/viralanalyzer/etsy-product-intelligence) — Etsy Open API v3 (BYOC)
- [ClickBank Marketplace Intelligence](https://apify.com/viralanalyzer/clickbank-marketplace-intelligence) — ClickBank digital products

### 🆕 Changelog

- **v1.0** (2026-05-14): Initial release. 8 query types covering AccountInfo / Campaigns / Catalogs / Ads / PromoCodes / Actions / Reports / RunReport. HTTP Basic SID:Token auth. Date range + customParams support for RunReport.

***

### Português

## 🌐 Impact.com Affiliate Network — Campanhas, Catálogos, Relatórios (BYOC)

> 🔗 [Ver na Apify Store](https://apify.com/viralanalyzer/impact-affiliate-network)

Consulta a **API Publisher da Impact.com** (`api.impact.com`) para campanhas, catálogos de produtos, criativos, promo codes, transações e 60+ relatórios. **BYOC** — você fornece seu Account SID + Auth Token. Plataforma usada por Walmart, Target, Microsoft, Adobe, Levi's, Airbnb e milhares de marcas grandes.

#### ✨ Recursos

- **API REST oficial Impact** — HTTPS, HTTP Basic auth (SID:Token), sem scraping
- **8 query types** cobrindo ciclo completo:
  - `AccountInfo` — sanity-check de credencial
  - `Campaigns` — advertisers que você joinou
  - `Catalogs` — feeds de produtos dos advertisers
  - `Ads` — criativos (banners, links)
  - `PromoCodes` — cupons ativos
  - `Actions` — suas transações/conversões
  - `Reports` — lista os 60+ relatórios disponíveis
  - `RunReport` — executa um relatório por `reportId` com data range + customParams
- **Paginação embutida** — `pageSize` (max 100 / 1000 em RunReport) + `page`
- **Filtros de data** — `startDate` / `endDate`
- **Parâmetros customizados** — `customParams` para RunReport avançado
- **Auth-only** — sem proxy (não há anti-bot por IP)
- **NUNCA 0 ITENS** — falha alto se nada for retornado

#### 🔑 Setup BYOC (uma vez, ~5 min)

1. Entre em https://app.impact.com (precisa ter conta Publisher; cadastro grátis com site/audiência)
2. Vá em **Account Settings > API Authentication**
3. Copie seu **Account SID** (~30 chars, começa com `IR`)
4. Copie seu **Auth Token** (trate como senha)
5. Cole ambos no input do actor (marcados como secret)

#### 📥 Input

| Parâmetro | Tipo | Obrigatório | Default | Descrição |
|---|---|---|---|---|
| `accountSid` | string (secret) | **Sim** | — | SID Impact (começa com `IR`) |
| `authToken` | string (secret) | **Sim** | — | Auth Token |
| `queryType` | enum | Não | `Reports` | Um dos 8 |
| `pageSize` | integer | Não | `50` | Itens por página (max 100; 1000 em RunReport) |
| `page` | integer | Não | `1` | Página |
| `reportId` | string | Não\* | `""` | Obrigatório para `RunReport` |
| `startDate` / `endDate` | string | Não | `""` | YYYY-MM-DD para Actions/RunReport |
| `customParams` | object | Não | `{}` | Params extras para RunReport |

#### 💰 Cobrança

Pay-per-event `item-scraped`: cobrado por linha retornada. Query sem resultado **não cobra**.

#### 🚀 Casos de uso

- Pull em lote de conversões para warehouse próprio
- Descoberta de cupons ativos em todos os advertisers joined
- Snapshot diário de roster de campanhas + comissão
- Refresh de catálogo (Walmart, Target etc.) para sites afiliados
- Analytics customizados com RunReport + customParams

#### ⚠️ Erros comuns

- `[IMPACT_API] 401`: SID ou Token errado — verificar em app.impact.com > Account Settings > API
- `[IMPACT_API] 404 on Reports/{reportId}`: rodar `queryType=Reports` primeiro
- `[FAIL] Zero items returned`: ampliar range de data; verificar se `Campaigns` retorna

#### 🔒 Privacidade

Credenciais enviadas diretamente para `api.impact.com` via HTTPS Basic. Sem armazenamento.

#### 📚 Actors relacionados

- [CJ Affiliate Products](https://apify.com/viralanalyzer/cj-affiliate-products)
- [Rakuten Affiliate Merchants](https://apify.com/viralanalyzer/rakuten-affiliate-merchants)
- [Awin Multi-Merchant](https://apify.com/viralanalyzer/awin-multi-merchant-affiliate)
- [Etsy Product Intelligence](https://apify.com/viralanalyzer/etsy-product-intelligence)
- [ClickBank Marketplace Intelligence](https://apify.com/viralanalyzer/clickbank-marketplace-intelligence)

#### 🆕 Changelog

- **v1.0** (2026-05-14): release inicial, 8 query types, Basic SID:Token auth, data range + customParams.

# Actor input Schema

## `accountSid` (type: `string`):

Your Impact.com Publisher Account SID (~30 chars, starts with 'IR'). Get from app.impact.com > Account Settings > API Authentication.

## `authToken` (type: `string`):

Your Impact.com API Auth Token. Used as password in HTTP Basic auth. Keep confidential.

## `queryType` (type: `string`):

What to fetch from Impact.com

## `pageSize` (type: `integer`):

Items per page (max 100 for most endpoints, max 1000 for Reports run)

## `page` (type: `integer`):

Page number (for pagination)

## `reportId` (type: `string`):

Report ID to execute. Get IDs by running queryType=Reports first. Examples: 'mp\_action\_listing\_fast', 'mp\_adv\_contacts'.

## `startDate` (type: `string`):

Filter for Actions/RunReport. Format: 2026-05-01

## `endDate` (type: `string`):

Filter for Actions/RunReport. Format: 2026-05-14

## `customParams` (type: `object`):

Extra query params for RunReport (key/value object). Example: {'AdvertiserId':'12345'}.

## Actor input object example

```json
{
  "queryType": "Reports",
  "pageSize": 50,
  "page": 1,
  "reportId": "",
  "startDate": "",
  "endDate": "",
  "customParams": {}
}
```

# Actor output Schema

## `results` (type: `string`):

Dataset of all results; each item follows the dataset schema.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("viralanalyzer/impact-affiliate-network").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("viralanalyzer/impact-affiliate-network").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call viralanalyzer/impact-affiliate-network --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=viralanalyzer/impact-affiliate-network",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Impact.com Affiliate API - Campaigns, Catalogs, Reports",
        "description": "Query Impact.com Publisher API: campaigns, product catalogs, ads, promo codes, actions, 60+ reports. Multi-vertical affiliate network (Walmart, Target, Microsoft, etc).",
        "version": "1.0",
        "x-build-id": "1syvPSVg8uAS3CrSA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/viralanalyzer~impact-affiliate-network/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-viralanalyzer-impact-affiliate-network",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/viralanalyzer~impact-affiliate-network/runs": {
            "post": {
                "operationId": "runs-sync-viralanalyzer-impact-affiliate-network",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/viralanalyzer~impact-affiliate-network/run-sync": {
            "post": {
                "operationId": "run-sync-viralanalyzer-impact-affiliate-network",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "accountSid": {
                        "title": "Account SID",
                        "type": "string",
                        "description": "Your Impact.com Publisher Account SID (~30 chars, starts with 'IR'). Get from app.impact.com > Account Settings > API Authentication."
                    },
                    "authToken": {
                        "title": "Auth Token",
                        "type": "string",
                        "description": "Your Impact.com API Auth Token. Used as password in HTTP Basic auth. Keep confidential."
                    },
                    "queryType": {
                        "title": "Query Type",
                        "enum": [
                            "AccountInfo",
                            "Campaigns",
                            "Catalogs",
                            "Ads",
                            "PromoCodes",
                            "Actions",
                            "Reports",
                            "RunReport"
                        ],
                        "type": "string",
                        "description": "What to fetch from Impact.com",
                        "default": "Reports"
                    },
                    "pageSize": {
                        "title": "Page Size",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Items per page (max 100 for most endpoints, max 1000 for Reports run)",
                        "default": 50
                    },
                    "page": {
                        "title": "Page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Page number (for pagination)",
                        "default": 1
                    },
                    "reportId": {
                        "title": "Report ID (for RunReport only)",
                        "type": "string",
                        "description": "Report ID to execute. Get IDs by running queryType=Reports first. Examples: 'mp_action_listing_fast', 'mp_adv_contacts'.",
                        "default": ""
                    },
                    "startDate": {
                        "title": "Start Date (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Filter for Actions/RunReport. Format: 2026-05-01",
                        "default": ""
                    },
                    "endDate": {
                        "title": "End Date (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Filter for Actions/RunReport. Format: 2026-05-14",
                        "default": ""
                    },
                    "customParams": {
                        "title": "Custom Report Parameters (advanced)",
                        "type": "object",
                        "description": "Extra query params for RunReport (key/value object). Example: {'AdvertiserId':'12345'}.",
                        "default": {}
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
