# Retry paid-ad import

Retry a failed or incomplete run with a fresh idempotency key.

## Contract status

Preview contract: these routes and tools are implemented in the shared contract, but the public host, customer API access and OAuth flow have not been deployment verified.

## Endpoint: POST /v1/admin/paid-ads/imports/{runId}/retry

- Method: `POST`
- Path: `/v1/admin/paid-ads/imports/{runId}/retry`
- Authentication: Bearer API credential or OAuth access token
- Required scope: `content:write`
- MCP tool: `admin_retry_paid_ad_import`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `runId` | path | uuid | yes | Failed or incomplete run ID. |
| `idempotencyKey` | body | uuid | yes | New stable command key. |

## Known errors

- 400 invalid_request for an invalid filter, identity or limit.
- 401 authentication_required for a missing or invalid credential.
- 402 subscription_required when access is not entitled.
- 403 authorization_required for a missing scope or unavailable preview access.
- 404 not_found when the record is outside the accessible catalogue.
- 429 rate_limited; honor Retry-After when present.
- 409 conflict when the write would duplicate an exclusive row.

## Request

Only failed or incomplete runs can retry.

```
curl --request POST 'https://api.peekpanda.com/v1/admin/paid-ads/imports/33333333-3333-4333-8333-333333333333/retry' \
  --header "Authorization: Bearer $PEEKPANDA_TOKEN" \
  --header 'x-genviral-tenancy: personal' \
  --header 'content-type: application/json' \
  --data '{"idempotencyKey":"44444444-4444-4444-8444-444444444444"}'
```

## Response

Excerpt of the new canonical ingestion run.

```
{
  "id": "33333333-3333-4333-8333-333333333333",
  "state": "queued"
}

```

## Source

Provider observations retain advertiser, lifecycle, creative and original public-ad-library URL as provenance.

## Refresh

Candidate discovery is bounded and cached for review. Import status is durable run state; polling it never starts provider work.
