POST api/{database}/IncrementPrintCounterCommand?printEntityType={printEntityType}&entityId={entityId}
Execute the IncrementPrintCounterCommand
Request Information
Parameters
| Name | Description | Additional information | 
|---|---|---|
| printEntityType | The printEntityType. Accepted values are: Value Description 0 SalesInvoice 1 SalesOrder 2 PurchaseOrder 3 Quotation | Define this parameter in the request URI. | 
| entityId | The entityId. | Define this parameter in the request URI. | 
Response Information
Response body formats
application/json, text/json
            Sample:
        
{
  "entityId": "sample string 1",
  "entityType": 0,
  "result": true
}
        application/xml, text/xml
            Sample:
<IncrementPrintCounterCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.Reporting.Base.Commands"> <EntityId>sample string 1</EntityId> <EntityType>SalesInvoice</EntityType> <Result>true</Result> </IncrementPrintCounterCommand>
