POST api/UpdateFormTypeDisplayOrder
Request Information
URI Parameters
None.
Body Parameters
Collection of FormTypeReorderRowModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FORM_TYPE_ID | integer |
None. |
|
| UPDATED_BY | integer |
None. |
|
| DISPLAY_ORDER | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"FORM_TYPE_ID": 1,
"UPDATED_BY": 1,
"DISPLAY_ORDER": 2
},
{
"FORM_TYPE_ID": 1,
"UPDATED_BY": 1,
"DISPLAY_ORDER": 2
}
]
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseApiResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": [
"sample string 1",
"sample string 2"
]
}