POST api/SetProfile

Request Information

URI Parameters

None.

Body Parameters

SetProfile
NameDescriptionTypeAdditional information
AccountId

integer

None.

FirstName

string

None.

LastName

string

None.

Email

string

None.

Address

string

None.

City

string

None.

Country

string

None.

DateOfBirth

date

None.

GenderType

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountId": 1,
  "FirstName": "sample string 2",
  "LastName": "sample string 3",
  "Email": "sample string 4",
  "Address": "sample string 5",
  "City": "sample string 6",
  "Country": "sample string 7",
  "DateOfBirth": "2025-12-17T07:04:13.8840671+01:00",
  "GenderType": 9
}

application/xml, text/xml

Sample:
<SetProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cabie.API.Models">
  <AccountId>1</AccountId>
  <Address>sample string 5</Address>
  <City>sample string 6</City>
  <Country>sample string 7</Country>
  <DateOfBirth>2025-12-17T07:04:13.8840671+01:00</DateOfBirth>
  <Email>sample string 4</Email>
  <FirstName>sample string 2</FirstName>
  <GenderType>9</GenderType>
  <LastName>sample string 3</LastName>
</SetProfile>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SetProfileResponse
NameDescriptionTypeAdditional information
Response

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Response": "sample string 1"
}

application/xml, text/xml

Sample:
<SetProfileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cabie.API.Models">
  <Response>sample string 1</Response>
</SetProfileResponse>