POST api/SignUp/CreateAffiliateAccount

Request Information

URI Parameters

None.

Body Parameters

AffiliateSignUpRequestVM
NameDescriptionTypeAdditional information
IsEmailVerified

boolean

None.

IsMobileVerified

boolean

None.

Goals

Collection of SignupAffiliateGoals

None.

Industry

SignupIndustries

None.

Website

string

None.

AffiliateSource

string

None.

AccountName

string

None.

AdminUserId

string

None.

FirstName

string

None.

LastName

string

None.

Email

string

Required

Password

string

Required

MobileNumber

string

Required

Address1

string

None.

Address2

string

None.

City

string

None.

StateId

string

None.

CountryId

string

Required

CountryCode

string

None.

ZipCode

string

None.

TimeZoneId

string

Required

IsUseDayLightSavings

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "IsEmailVerified": true,
  "IsMobileVerified": true,
  "Goals": [
    "GENERATE_REFERRAL_INCOME",
    "GENERATE_REFERRAL_INCOME"
  ],
  "Industry": "AutoDealer",
  "Website": "sample string 3",
  "AffiliateSource": "sample string 4",
  "AccountName": "sample string 5",
  "AdminUserId": "sample string 6",
  "FirstName": "sample string 7",
  "LastName": "sample string 8",
  "Email": "sample string 9",
  "Password": "sample string 10",
  "MobileNumber": "sample string 11",
  "Address1": "sample string 12",
  "Address2": "sample string 13",
  "City": "sample string 14",
  "StateId": "sample string 15",
  "CountryId": "sample string 16",
  "CountryCode": "sample string 17",
  "ZipCode": "sample string 18",
  "TimeZoneId": "sample string 19",
  "IsUseDayLightSavings": true
}

application/xml, text/xml

Sample:
<AffiliateSignUpRequestVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MindMe.Business.Service.Services.RequestViewModels.SignUp">
  <AccountName>sample string 5</AccountName>
  <Address1>sample string 12</Address1>
  <Address2>sample string 13</Address2>
  <AdminUserId>sample string 6</AdminUserId>
  <City>sample string 14</City>
  <CountryCode>sample string 17</CountryCode>
  <CountryId>sample string 16</CountryId>
  <Email>sample string 9</Email>
  <FirstName>sample string 7</FirstName>
  <IsUseDayLightSavings>true</IsUseDayLightSavings>
  <LastName>sample string 8</LastName>
  <MobileNumber>sample string 11</MobileNumber>
  <Password>sample string 10</Password>
  <StateId>sample string 15</StateId>
  <TimeZoneId>sample string 19</TimeZoneId>
  <ZipCode>sample string 18</ZipCode>
  <AffiliateSource>sample string 4</AffiliateSource>
  <Goals xmlns:d2p1="http://schemas.datacontract.org/2004/07/MindMe.Shared.Common">
    <d2p1:SignupAffiliateGoals>GENERATE_REFERRAL_INCOME</d2p1:SignupAffiliateGoals>
    <d2p1:SignupAffiliateGoals>GENERATE_REFERRAL_INCOME</d2p1:SignupAffiliateGoals>
  </Goals>
  <Industry>AutoDealer</Industry>
  <IsEmailVerified>true</IsEmailVerified>
  <IsMobileVerified>true</IsMobileVerified>
  <Website>sample string 3</Website>
</AffiliateSignUpRequestVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.