Get Conversion
Retrieve a single conversion by ID with optional field selection.
Last updated: April 9, 2026
Get Conversion
GET /siren/v1/conversions/{id}
Returns a single conversion by ID.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
fields | string | core fields | Comma-separated list of fields to include |
include | string | — | Legacy: extended for all available fields |
Example Request
GET /siren/v1/conversions/42?fields=id,status,engagementScore,programId
Example Response
{
"id": 42,
"status": "pending",
"engagementScore": 100,
"programId": 3
}
Error Responses
Returns 404 if no record exists with that ID, or 500 on a database error.