POST api/invoice/{id}/temperature
Save the invoice receiving temperature
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Invoice identifier |
globally unique identifier |
Required |
Body Parameters
Invoice temperature to save
InvoiceTemperatureName | Description | Type | Additional information |
---|---|---|---|
InvoiceIdentifier | Collection of byte |
None. |
|
InvoiceIdentifierGuid | globally unique identifier |
None. |
|
Temperature |
Temperature recorded of order on receive. Null indicates no temperature recorded |
decimal number |
None. |
TemperatureScale |
Temperature scale that temperature is recorded in |
TemperatureScale |
None. |
Request Formats
application/json, text/json
Sample:
{ "invoiceIdentifier": "GeQJ9JrzG06GyDaQhY5dyQ==", "invoiceIdentifierGuid": "f409e419-f39a-4e1b-86c8-3690858e5dc9", "temperature": 1.1, "temperatureScale": 1 }
application/xml, text/xml
Sample:
<InvoiceTemperature xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Invoices"> <InvoiceIdentifier>GeQJ9JrzG06GyDaQhY5dyQ==</InvoiceIdentifier> <InvoiceIdentifierGuid>f409e419-f39a-4e1b-86c8-3690858e5dc9</InvoiceIdentifierGuid> <Temperature>1.1</Temperature> <TemperatureScale>1</TemperatureScale> </InvoiceTemperature>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.