PUT api/UserProfiles/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

UserProfile
NameDescriptionTypeAdditional information
Id

integer

None.

Username

string

None.

FirstName

string

None.

LastName

string

None.

City

string

None.

State

string

None.

Country

string

None.

FirstInserted

date

None.

LastUpated

date

None.

Studying

string

None.

MobileNumber

string

None.

ScreenName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Username": "sample string 2",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "City": "sample string 5",
  "State": "sample string 6",
  "Country": "sample string 7",
  "FirstInserted": "2025-12-20T17:07:05.6515937-08:00",
  "LastUpated": "2025-12-20T17:07:05.6515937-08:00",
  "Studying": "sample string 10",
  "MobileNumber": "sample string 11",
  "ScreenName": "sample string 12"
}

application/xml, text/xml

Sample:
<UserProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SpellingAPI">
  <City>sample string 5</City>
  <Country>sample string 7</Country>
  <FirstInserted>2025-12-20T17:07:05.6515937-08:00</FirstInserted>
  <FirstName>sample string 3</FirstName>
  <Id>1</Id>
  <LastName>sample string 4</LastName>
  <LastUpated>2025-12-20T17:07:05.6515937-08:00</LastUpated>
  <MobileNumber>sample string 11</MobileNumber>
  <ScreenName>sample string 12</ScreenName>
  <State>sample string 6</State>
  <Studying>sample string 10</Studying>
  <Username>sample string 2</Username>
</UserProfile>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.