PUT api/OrderProcessorData/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
OrderProcessorData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| OrderStatus | integer |
None. |
|
| SupplierResponseCode | string |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| ProductTarget | string |
None. |
|
| ProductSubTarget | string |
None. |
|
| ProductCommissionTypeCode | integer |
None. |
|
| Invoice | string |
None. |
|
| IsClosed | boolean |
None. |
|
| ClosedDateTimeUtc | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "1be4534c-14fe-4cb2-ae0b-f9d6dc8ca896",
"order-status": 2,
"supplier-response-code": "sample string 3",
"product-id": "be8fd74e-6a98-495d-aaaa-975d7240ca65",
"product-target": "sample string 5",
"product-sub-target": "sample string 6",
"product-commission-type-code": 7,
"invoice": "sample string 8",
"is-closed": true,
"closed-date-time-utc": "2026-07-30T03:15:21.4684151+00:00"
}
application/xml, text/xml
Sample:
<OrderProcessorData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caprica.Models"> <ClosedDateTimeUtc>2026-07-30T03:15:21.4684151+00:00</ClosedDateTimeUtc> <Id>1be4534c-14fe-4cb2-ae0b-f9d6dc8ca896</Id> <Invoice>sample string 8</Invoice> <IsClosed>true</IsClosed> <OrderStatus>2</OrderStatus> <ProductCommissionTypeCode>7</ProductCommissionTypeCode> <ProductId>be8fd74e-6a98-495d-aaaa-975d7240ca65</ProductId> <ProductSubTarget>sample string 6</ProductSubTarget> <ProductTarget>sample string 5</ProductTarget> <SupplierResponseCode>sample string 3</SupplierResponseCode> </OrderProcessorData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |