POST api/ListType/EditListType
Request Information
URI Parameters
None.
Body Parameters
EditListTypeCommandDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ListTypeName | string |
None. |
|
| ListTypeText | string |
None. |
|
| Code | string |
None. |
|
| MG | string |
None. |
|
| Sequence | integer |
None. |
|
| UserId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1fe37c4f-0aab-4875-a2c4-9ca9bed41d76",
"ListTypeName": "sample string 2",
"ListTypeText": "sample string 3",
"Code": "sample string 4",
"MG": "sample string 5",
"Sequence": 6,
"UserId": "sample string 7"
}
application/xml, text/xml
Sample:
<EditListTypeCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ListTypeModule.Model"> <Code>sample string 4</Code> <Id>1fe37c4f-0aab-4875-a2c4-9ca9bed41d76</Id> <ListTypeName>sample string 2</ListTypeName> <ListTypeText>sample string 3</ListTypeText> <MG>sample string 5</MG> <Sequence>6</Sequence> <UserId>sample string 7</UserId> </EditListTypeCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Status |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Message": "sample string 1"
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Utilities.Common"> <Message>sample string 1</Message> <Status>Failed</Status> </Response>