POST api/MFData/GetDropDownVal_GoalType

Request Information

URI Parameters

None.

Body Parameters

DrpDownGoalTypeInputModel
NameDescriptionTypeAdditional information
MembID

string

None.

PlanID

string

None.

GoalType

string

None.

Token

string

None.

IFAID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MembID": "sample string 1",
  "PlanID": "sample string 2",
  "GoalType": "sample string 3",
  "Token": "sample string 4",
  "IFAID": "sample string 5"
}

application/xml, text/xml

Sample:
<DrpDownGoalTypeInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMDataService.Models">
  <GoalType>sample string 3</GoalType>
  <IFAID>sample string 5</IFAID>
  <MembID>sample string 1</MembID>
  <PlanID>sample string 2</PlanID>
  <Token>sample string 4</Token>
</DrpDownGoalTypeInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GoalTypeOutputModels
NameDescriptionTypeAdditional information
GoalType

Collection of DrpDownGoalTypeModel

None.

Status

string

Required

Message

string

Required

MobileOtp

integer

None.

LoginUserSessionID

integer

Required

IsWMPRO

boolean

None.

IsMagic

string

None.

Response Formats

application/json, text/json

Sample:
{
  "GoalType": [
    {
      "PlanID": "sample string 1",
      "GoalTitl": "sample string 2"
    },
    {
      "PlanID": "sample string 1",
      "GoalTitl": "sample string 2"
    }
  ],
  "Status": "sample string 1",
  "Message": "sample string 2",
  "MobileOtp": 3,
  "LoginUserSessionID": 4,
  "IsWMPRO": true,
  "IsMagic": "sample string 6"
}

application/xml, text/xml

Sample:
<GoalTypeOutputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMDataService.Models">
  <IsMagic>sample string 6</IsMagic>
  <IsWMPRO>true</IsWMPRO>
  <LoginUserSessionID>4</LoginUserSessionID>
  <Message>sample string 2</Message>
  <MobileOtp>3</MobileOtp>
  <Status>sample string 1</Status>
  <GoalType>
    <DrpDownGoalTypeModel>
      <GoalTitl>sample string 2</GoalTitl>
      <PlanID>sample string 1</PlanID>
    </DrpDownGoalTypeModel>
    <DrpDownGoalTypeModel>
      <GoalTitl>sample string 2</GoalTitl>
      <PlanID>sample string 1</PlanID>
    </DrpDownGoalTypeModel>
  </GoalType>
</GoalTypeOutputModels>