This app command enable Oliver to print predefined data from an external source (URL) on a document. User can define the number of copies to print.

POST

Description:
Fetch data from a URL and print the data on a customized receipt with the defined number of copies.

Request Body:

{
    command: 'Receipt',
    method: 'post',
    version: '1.0',
    url: 'https://www.thaimeup.com', 
    quantity: 5 
}

Response Body:

{
    command: 'Receipt',
    method: 'post',
    version: '1.0',
    status: 200,
    error: null
}

Parameters:

Attribute NameAttribute TypeDescriptionEnumRequired (binary)
commandstringHigh level command name to interact with Olivernull1
methodstringThese correspond to create, read, update, and delete (or CRUD) operationsnull1
versionstringThe version of the command usednull1
urlstringSource of the datanull1
quantityintegerNumber of copies to printnull1