POST api/Shared/Save_TermsAndConditions

Request Information

URI Parameters

None.

Body Parameters

TermsAndConditionsModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

CaretakerConditionID

integer

None.

CareTakerContractID

integer

None.

TermAndConditionID

integer

None.

TermsAndConditionsTypeID

integer

None.

AddressTypeID

integer

None.

TermsAndConditionsType

string

None.

SearchEntity

string

None.

Descriptions

string

None.

IsChecked

boolean

None.

ParentID

integer

None.

IsUserAdded

boolean

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "DBNo": 1,
  "AppNo": 1,
  "CaretakerConditionID": 1,
  "CareTakerContractID": 1,
  "TermAndConditionID": 1,
  "TermsAndConditionsTypeID": 1,
  "AddressTypeID": 2,
  "TermsAndConditionsType": "sample string 3",
  "SearchEntity": "sample string 4",
  "Descriptions": "sample string 5",
  "IsChecked": true,
  "ParentID": 1,
  "IsUserAdded": true,
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 8,
  "UpdatedBy": 9
}

application/xml, text/xml

Sample:
<TermsAndConditionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <AddressTypeID>2</AddressTypeID>
  <AppNo>1</AppNo>
  <CareTakerContractID>1</CareTakerContractID>
  <CaretakerConditionID>1</CaretakerConditionID>
  <CreatedBy>8</CreatedBy>
  <DBNo>1</DBNo>
  <Descriptions>sample string 5</Descriptions>
  <IsActive>true</IsActive>
  <IsChecked>true</IsChecked>
  <IsDeleted>true</IsDeleted>
  <IsUserAdded>true</IsUserAdded>
  <ParentID>1</ParentID>
  <SearchEntity>sample string 4</SearchEntity>
  <TermAndConditionID>1</TermAndConditionID>
  <TermsAndConditionsType>sample string 3</TermsAndConditionsType>
  <TermsAndConditionsTypeID>1</TermsAndConditionsTypeID>
  <UpdatedBy>9</UpdatedBy>
</TermsAndConditionsModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>