POST api/Account/RegisterTermsAndCondition

Request Information

URI Parameters

None.

Body Parameters

TermsAndCondition
NameDescriptionTypeAdditional information
Oid

integer

None.

TermsAndServices

string

None.

CreatedBy

string

None.

CreatedDate

date

None.

IsActive

boolean

None.

AppId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Oid": 1,
  "TermsAndServices": "sample string 2",
  "CreatedBy": "sample string 3",
  "CreatedDate": "2024-09-08T00:57:37.4361482+00:00",
  "IsActive": true,
  "AppId": "sample string 5"
}

multipart/form-data

Sample:
{"Oid":1,"TermsAndServices":"sample string 2","CreatedBy":"sample string 3","CreatedDate":"2024-09-08T00:57:37.4361482+00:00","IsActive":true,"AppId":"sample string 5"}

application/xml, text/xml

Sample:
<TermsAndCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileActML">
  <AppId>sample string 5</AppId>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedDate>2024-09-08T00:57:37.4361482+00:00</CreatedDate>
  <IsActive>true</IsActive>
  <Oid>1</Oid>
  <TermsAndServices>sample string 2</TermsAndServices>
</TermsAndCondition>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, multipart/form-data, application/xml, text/xml

Sample:

Sample not available.