POST api/SaveUserProfile

Request Information

URI Parameters

None.

Body Parameters

UsersVm
NameDescriptionTypeAdditional information
Id

integer

None.

EmailAddress

string

None.

Fullname

string

None.

Password

string

None.

AddedBy

string

None.

DateAdded

date

None.

DateAddedStr

string

None.

UpdatedBy

string

None.

DateUpdated

date

None.

DateUpdatedStr

string

None.

DeletedBy

string

None.

DateDeleted

date

None.

DateDeletedStr

string

None.

Deleted

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "EmailAddress": "sample string 1",
  "Fullname": "sample string 2",
  "Password": "sample string 3",
  "AddedBy": "sample string 4",
  "DateAdded": "2026-01-28T09:26:54.5479919+08:00",
  "DateAddedStr": "sample string 5",
  "UpdatedBy": "sample string 6",
  "DateUpdated": "2026-01-28T09:26:54.5479919+08:00",
  "DateUpdatedStr": "sample string 7",
  "DeletedBy": "sample string 8",
  "DateDeleted": "2026-01-28T09:26:54.5479919+08:00",
  "DateDeletedStr": "sample string 9",
  "Deleted": true
}

application/xml, text/xml

Sample:
<UsersVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/konsulta_api.Models">
  <AddedBy>sample string 4</AddedBy>
  <DateAdded>2026-01-28T09:26:54.5479919+08:00</DateAdded>
  <DateAddedStr>sample string 5</DateAddedStr>
  <DateDeleted>2026-01-28T09:26:54.5479919+08:00</DateDeleted>
  <DateDeletedStr>sample string 9</DateDeletedStr>
  <DateUpdated>2026-01-28T09:26:54.5479919+08:00</DateUpdated>
  <DateUpdatedStr>sample string 7</DateUpdatedStr>
  <Deleted>true</Deleted>
  <DeletedBy>sample string 8</DeletedBy>
  <EmailAddress>sample string 1</EmailAddress>
  <Fullname>sample string 2</Fullname>
  <Id>1</Id>
  <Password>sample string 3</Password>
  <UpdatedBy>sample string 6</UpdatedBy>
</UsersVm>

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.