GET api/TermsAndConditions?accountUrlName={accountUrlName}

Returns the contents of the terms and conditions.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountUrlName

string

Required

Body Parameters

None.

Response Information

Resource Description

TermsAndConditionsModel
NameDescriptionTypeAdditional information
TermsAndAcceptanceContent

Terms and conditions of use of myCare mobile, kiosk applications.

string

None.

NoticePrivacyPractices

Privacy policies of practice.

string

None.

AccountName

Name of the account.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TermsAndAcceptanceContent": "sample string 1",
  "NoticePrivacyPractices": "sample string 2",
  "AccountName": "sample string 3"
}

application/xml, text/xml

Sample:
<TermsAndConditionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.TermsAndConditions">
  <AccountName>sample string 3</AccountName>
  <NoticePrivacyPractices>sample string 2</NoticePrivacyPractices>
  <TermsAndAcceptanceContent>sample string 1</TermsAndAcceptanceContent>
</TermsAndConditionsModel>