POST getPanelFieldsNew
Request Information
URI Parameters
None.
Body Parameters
GetNewOptionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | globally unique identifier |
None. |
|
| PanelId | integer |
None. |
|
| Lang | string |
None. |
|
| SelectedFields | Collection of KeyValueModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductId": "1b26ea44-0b9a-42bf-9454-e3877925a57b",
"PanelId": 2,
"Lang": "sample string 3",
"SelectedFields": [
{
"Key": 1,
"Value": "sample string 2"
},
{
"Key": 1,
"Value": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<GetNewOptionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbbApi.Models">
<Lang>sample string 3</Lang>
<PanelId>2</PanelId>
<ProductId>1b26ea44-0b9a-42bf-9454-e3877925a57b</ProductId>
<SelectedFields>
<KeyValueModel>
<Key>1</Key>
<Value>sample string 2</Value>
</KeyValueModel>
<KeyValueModel>
<Key>1</Key>
<Value>sample string 2</Value>
</KeyValueModel>
</SelectedFields>
</GetNewOptionModel>
application/x-www-form-urlencoded
Sample:
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. |