POST api/PMCategories/bulkInsert
Request Information
URI Parameters
None.
Body Parameters
Collection of T_PM_Categories| Name | Description | Type | Additional information |
|---|---|---|---|
| Category_Id | integer |
None. |
|
| Category_Name | string |
None. |
|
| Cat_Type | integer |
None. |
|
| AssetTypeId | integer |
None. |
|
| ModuleId | integer |
None. |
|
| LedgerID | integer |
None. |
|
| IsActive | boolean |
None. |
|
| cid | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Category_Id": 1,
"Category_Name": "sample string 2",
"Cat_Type": 3,
"AssetTypeId": 4,
"ModuleId": 5,
"LedgerID": 1,
"IsActive": true,
"cid": 7
},
{
"Category_Id": 1,
"Category_Name": "sample string 2",
"Cat_Type": 3,
"AssetTypeId": 4,
"ModuleId": 5,
"LedgerID": 1,
"IsActive": true,
"cid": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfT_PM_Categories xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Login.Models">
<T_PM_Categories>
<AssetTypeId>4</AssetTypeId>
<Cat_Type>3</Cat_Type>
<Category_Id>1</Category_Id>
<Category_Name>sample string 2</Category_Name>
<IsActive>true</IsActive>
<LedgerID>1</LedgerID>
<ModuleId>5</ModuleId>
<cid>7</cid>
</T_PM_Categories>
<T_PM_Categories>
<AssetTypeId>4</AssetTypeId>
<Cat_Type>3</Cat_Type>
<Category_Id>1</Category_Id>
<Category_Name>sample string 2</Category_Name>
<IsActive>true</IsActive>
<LedgerID>1</LedgerID>
<ModuleId>5</ModuleId>
<cid>7</cid>
</T_PM_Categories>
</ArrayOfT_PM_Categories>
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. |