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
InvoiceTemperature| Name | 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": "g5zisSZP+EebBeDmMn02eg==",
"invoiceIdentifierGuid": "b1e29c83-4f26-47f8-9b05-e0e6327d367a",
"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>g5zisSZP+EebBeDmMn02eg==</InvoiceIdentifier> <InvoiceIdentifierGuid>b1e29c83-4f26-47f8-9b05-e0e6327d367a</InvoiceIdentifierGuid> <Temperature>1.1</Temperature> <TemperatureScale>1</TemperatureScale> </InvoiceTemperature>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.