POST api/Account/SubmitProfile

Request Information

URI Parameters

None.

Body Parameters

ProfileData
NameDescriptionTypeAdditional information
membershipUserID

integer

None.

address

string

None.

city

string

None.

state

string

None.

countryID

byte

None.

countryCode

byte

None.

zipCode

string

None.

mobileNo

string

None.

faxNo

string

None.

languageID

byte

None.

Request Formats

application/json, text/json

Sample:
{
  "membershipUserID": 1,
  "address": "sample string 2",
  "city": "sample string 3",
  "state": "sample string 4",
  "countryID": 64,
  "countryCode": 64,
  "zipCode": "sample string 6",
  "mobileNo": "sample string 7",
  "faxNo": "sample string 8",
  "languageID": 64
}

application/xml, text/xml

Sample:
<ProfileData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Petra_Mobile_API.ViewModels">
  <address>sample string 2</address>
  <city>sample string 3</city>
  <countryCode>64</countryCode>
  <countryID>64</countryID>
  <faxNo>sample string 8</faxNo>
  <languageID>64</languageID>
  <membershipUserID>1</membershipUserID>
  <mobileNo>sample string 7</mobileNo>
  <state>sample string 4</state>
  <zipCode>sample string 6</zipCode>
</ProfileData>

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.