Update Conversion
Update an existing conversion record's fields and status.
Last updated: April 9, 2026
Update Conversion
PUT /siren/v1/conversions/{id}
Updates an existing conversion. Only provided fields are changed. The record must exist (enforced by RecordExistsMiddleware).
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
engagementId | integer | No | Updated engagement ID (must exist) |
type | string | No | Updated conversion type |
status | string | No | Updated status: pending, approved, rejected, or expired |
transactionId | integer | No | Updated transaction ID |
obligationId | integer | No | Updated obligation ID |
Example Request
{
"status": "approved"
}
Events
Broadcasts ConversionActionEvent (action: Update) after success.