POST APIControllers/Policy/UpdateContactMemberMethod

Request Information

URI Parameters

None.

Body Parameters

IOSUpdateContactMethod
NameDescriptionTypeAdditional information
securityKey

string

None.

memberAccountId

integer

None.

contactMethod

ContactMethod

None.

Request Formats

application/json, text/json

Sample:
{
  "securityKey": "sample string 1",
  "memberAccountId": 2,
  "contactMethod": {
    "Value": "sample string 1",
    "ContactType": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<IOSUpdateContactMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/mobile.oneplan.co.za.Models">
  <contactMethod>
    <ContactType>sample string 2</ContactType>
    <Value>sample string 1</Value>
  </contactMethod>
  <memberAccountId>2</memberAccountId>
  <securityKey>sample string 1</securityKey>
</IOSUpdateContactMethod>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseOfBoolean
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Entity

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Entity": true
}

application/xml, text/xml

Sample:
<ResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnePlan.Core">
  <Entity>true</Entity>
  <Message>sample string 2</Message>
  <Success>true</Success>
</ResponseOfboolean>