POST api/case/AddSubCourt

Request Information

URI Parameters

None.

Body Parameters

tbl_Courts_Master_SubVM
NameDescriptionTypeAdditional information
ID

integer

None.

CourtMasterID

integer

Required

CourtMaster

string

None.

Sub_CourtName

string

Required

SortOrder

integer

None.

Active

integer

None.

IsDeleted

integer

None.

CreatedBy

integer

None.

CreatedOn

date

None.

ModifiedBy

integer

None.

ModifiedOn

date

None.

FileNm

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CourtMasterID": 1,
  "CourtMaster": "sample string 2",
  "Sub_CourtName": "sample string 3",
  "SortOrder": 1,
  "Active": 1,
  "IsDeleted": 1,
  "CreatedBy": 1,
  "CreatedOn": "2025-12-20T14:05:12.9538931-06:00",
  "ModifiedBy": 1,
  "ModifiedOn": "2025-12-20T14:05:12.9538931-06:00",
  "FileNm": "sample string 4"
}

application/xml, text/xml

Sample:
<tbl_Courts_Master_SubVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Case_Management_DAL.ViewModel">
  <Active>1</Active>
  <CourtMaster>sample string 2</CourtMaster>
  <CourtMasterID>1</CourtMasterID>
  <CreatedBy>1</CreatedBy>
  <CreatedOn>2025-12-20T14:05:12.9538931-06:00</CreatedOn>
  <FileNm>sample string 4</FileNm>
  <ID>1</ID>
  <IsDeleted>1</IsDeleted>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedOn>2025-12-20T14:05:12.9538931-06:00</ModifiedOn>
  <SortOrder>1</SortOrder>
  <Sub_CourtName>sample string 3</Sub_CourtName>
</tbl_Courts_Master_SubVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ErrorClass
NameDescriptionTypeAdditional information
Msg

string

None.

Status

string

None.

IsSuccess

boolean

None.

retrn

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "Status": "sample string 2",
  "IsSuccess": true,
  "retrn": {}
}

application/xml, text/xml

Sample:
<ErrorClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMC_WebAPI.Utilities">
  <IsSuccess>true</IsSuccess>
  <Msg>sample string 1</Msg>
  <Status>sample string 2</Status>
  <retrn />
</ErrorClass>