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": "WXm3nIdLdEyphrZyh6jxzQ==", "invoiceIdentifierGuid": "9cb77959-4b87-4c74-a986-b67287a8f1cd", "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>WXm3nIdLdEyphrZyh6jxzQ==</InvoiceIdentifier> <InvoiceIdentifierGuid>9cb77959-4b87-4c74-a986-b67287a8f1cd</InvoiceIdentifierGuid> <Temperature>1.1</Temperature> <TemperatureScale>1</TemperatureScale> </InvoiceTemperature>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.