POST api/BookMaster/UpsertSubjectCategory
Request Information
URI Parameters
None.
Body Parameters
SubjectCategoryMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| title | string |
None. |
|
| description | string |
None. |
|
| created_date | date |
None. |
|
| created_by | integer |
None. |
|
| is_active | integer |
None. |
|
| is_deleted | integer |
None. |
|
| updated_by | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"title": "sample string 2",
"description": "sample string 3",
"created_date": "2025-12-22T16:14:13.611292+05:30",
"created_by": 5,
"is_active": 6,
"is_deleted": 7,
"updated_by": 8
}
application/xml, text/xml
Sample:
<SubjectCategoryMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NxModel"> <created_by>5</created_by> <created_date>2025-12-22T16:14:13.611292+05:30</created_date> <description>sample string 3</description> <id>1</id> <is_active>6</is_active> <is_deleted>7</is_deleted> <title>sample string 2</title> <updated_by>8</updated_by> </SubjectCategoryMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />