POST api/Account/SaveUser

Request Information

URI Parameters

None.

Body Parameters

UserSaveInputs
NameDescriptionTypeAdditional information
intUserId

integer

None.

strUsername

string

None.

strPassword

string

None.

strFirstName

string

None.

strLastName

string

None.

strEmail

string

None.

strJobTitle

string

None.

intCustomerId

integer

None.

strPhoneNumber

string

None.

strCountryIdCode

string

None.

strProvStateIdCode

string

None.

strCity

string

None.

strAddress1

string

None.

strAddress2

string

None.

intAccessId

integer

None.

intAccessLevelId

integer

None.

intAccessPricingId

integer

None.

strCreatedDate

string

None.

intIsUpdateMyAccount

integer

None.

intIsUpdatePassword

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "intUserId": 1,
  "strUsername": "sample string 2",
  "strPassword": "sample string 3",
  "strFirstName": "sample string 4",
  "strLastName": "sample string 5",
  "strEmail": "sample string 6",
  "strJobTitle": "sample string 7",
  "intCustomerId": 8,
  "strPhoneNumber": "sample string 9",
  "strCountryIdCode": "sample string 10",
  "strProvStateIdCode": "sample string 11",
  "strCity": "sample string 12",
  "strAddress1": "sample string 13",
  "strAddress2": "sample string 14",
  "intAccessId": 15,
  "intAccessLevelId": 16,
  "intAccessPricingId": 17,
  "strCreatedDate": "sample string 18",
  "intIsUpdateMyAccount": 19,
  "intIsUpdatePassword": 20
}

application/xml, text/xml

Sample:
<UserSaveInputs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oxygen8SelectorApi.Models">
  <intAccessId>15</intAccessId>
  <intAccessLevelId>16</intAccessLevelId>
  <intAccessPricingId>17</intAccessPricingId>
  <intCustomerId>8</intCustomerId>
  <intIsUpdateMyAccount>19</intIsUpdateMyAccount>
  <intIsUpdatePassword>20</intIsUpdatePassword>
  <intUserId>1</intUserId>
  <strAddress1>sample string 13</strAddress1>
  <strAddress2>sample string 14</strAddress2>
  <strCity>sample string 12</strCity>
  <strCountryIdCode>sample string 10</strCountryIdCode>
  <strCreatedDate>sample string 18</strCreatedDate>
  <strEmail>sample string 6</strEmail>
  <strFirstName>sample string 4</strFirstName>
  <strJobTitle>sample string 7</strJobTitle>
  <strLastName>sample string 5</strLastName>
  <strPassword>sample string 3</strPassword>
  <strPhoneNumber>sample string 9</strPhoneNumber>
  <strProvStateIdCode>sample string 11</strProvStateIdCode>
  <strUsername>sample string 2</strUsername>
</UserSaveInputs>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />