> For the complete documentation index, see [llms.txt](https://docs.sparkloop.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sparkloop.app/api-v3/objects-schema/offer-conversion-object.md).

# Offer Conversion Object

## Offer Conversion Object

A single conversion recorded against a joined offer.

| Field              | Type           | Description                                                |
| ------------------ | -------------- | ---------------------------------------------------------- |
| `uuid`             | String         | Conversion UUID.                                           |
| `pricing_type`     | String         | The offer's pricing model: `free` or `paid`.               |
| `payable`          | Boolean        | Whether this conversion is payable.                        |
| `rejection_reason` | String \| null | Why it was rejected, if applicable.                        |
| `type`             | String         | `lead`, `click`, or `action`.                              |
| `status`           | String         | Referral status (e.g. `confirmed`, `pending`, `rejected`). |
| `source`           | String         | Referral channel (e.g. `signup_flow`).                     |
| `commission`       | Number         | Commission for this conversion, in dollars.                |
| `referred_at`      | String \| null | When the conversion was referred (ISO 8601).               |
| `confirmed_at`     | String \| null | When it was confirmed (ISO 8601).                          |
| `rejected_at`      | String \| null | When it was rejected (ISO 8601).                           |

**Example**

```json
{
  "uuid": "conv_abc12345",
  "pricing_type": "paid",
  "payable": true,
  "rejection_reason": null,
  "type": "lead",
  "status": "confirmed",
  "source": "signup_flow",
  "commission": 2.0,
  "referred_at": "2026-06-01T10:00:00.000Z",
  "confirmed_at": "2026-06-08T10:00:00.000Z",
  "rejected_at": null
}
```
