POST api/CarsCategories/Update
Request Information
URI Parameters
None.
Body Parameters
CarCatEditModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Categ_Id | integer |
None. |
|
| Categ_Name | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Categ_Id": 1,
"Categ_Name": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResponseOfCarCatEditModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiMessage | ApiMessage |
None. |
|
| Data | CarCatEditModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"ApiMessage": {
"StatusCode": 1,
"StatusMessage": "sample string 2"
},
"Data": {
"Categ_Id": 1,
"Categ_Name": "sample string 2"
}
}