GetPrinted
[POST] .../v1/pos/doccheque/getprinted
Prints a closed cash register cheque Use this method to retrieve rendered print data for an existing POS cheque, usually after the cheque has been closed or when a duplicate receipt is needed. The request filters by document_uuid, validates that the identifier is present and returns result.print_data with the rendered cheque payload. The method uses the current request user and language context to build the receipt; missing document_uuid, missing cheque, template or rendering failures and storage errors are returned as HTTP 200 ErrorResult business errors.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| filters | Array of Filter | Optional | Optional filters by fields available for this API method. |
Filterable Fields
| Field | Type | Description |
|---|---|---|
| document_uuid | string | Cheque UUID. |
Request Example
{
"filters": [
{
"Field": "document_uuid",
"Operator": "Equal",
"Value": "string"
}
]
}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | ChequePrint_ResponseModel | Result object. |
Response Example
{
"ok": true,
"result": {
"print_data": "string"
}
}