DeliverySummary response model
Nullable fields represent unknown values; they do not imply zero cost or a completed action.
| Field | Type | Required | Details |
|---|---|---|---|
id |
string | Yes | Format: uuid |
status |
string | Yes | |
channel |
string | Yes | |
factoryId |
string or null | Yes | |
toName |
string or null | Yes | |
subject |
string or null | Yes |
Full JSON schema
{ "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "status": { "type": "string" }, "channel": { "type": "string" }, "factoryId": { "anyOf": [ { "type": "string", "format": "uuid" }, { "type": "null" } ] }, "toName": { "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "subject": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "id", "status", "channel", "factoryId", "toName", "subject" ]}