POST users/current/profile

Create profile for current user.

Request Information

URI Parameters

None.

Body Parameters

UserProfile
NameDescriptionTypeAdditional information
last_name

string

None.

first_name

string

None.

email

string

None.

Request Formats

application/json, text/json

Sample:
{
  "last_name": "sample string 1",
  "first_name": "sample string 2",
  "email": "sample string 3"
}

multipart/form-data

Sample:
{"last_name":"sample string 1","first_name":"sample string 2","email":"sample string 3"}

application/xml, text/xml

Sample:
<UserProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IVFS.Models.UserManagement">
  <Email>sample string 3</Email>
  <FirstName>sample string 2</FirstName>
  <LastName>sample string 1</LastName>
</UserProfile>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserProfile
NameDescriptionTypeAdditional information
last_name

string

None.

first_name

string

None.

email

string

None.

Response Formats

application/json, text/json

Sample:
{
  "last_name": "sample string 1",
  "first_name": "sample string 2",
  "email": "sample string 3"
}

multipart/form-data

Sample:
{"last_name":"sample string 1","first_name":"sample string 2","email":"sample string 3"}

application/xml, text/xml

Sample:
<UserProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IVFS.Models.UserManagement">
  <Email>sample string 3</Email>
  <FirstName>sample string 2</FirstName>
  <LastName>sample string 1</LastName>
</UserProfile>