PUT api/profiles/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
ProfileDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreationDate | date |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
Required |
|
| Forename | string |
None. |
|
| Surname | string |
None. |
|
| JobTitle | string |
None. |
|
| Telephone | string |
None. |
|
| IsDeleted | boolean |
None. |
|
| OrganisationId | globally unique identifier |
None. |
|
| ProfileProperties | Collection of ProfilePropertyDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "69a140fb-401f-4387-9578-15b190b807d8",
"CreationDate": "2026-01-10T00:47:27.843184+00:00",
"CreatorUserId": "0f003d4b-c421-4311-896b-d446ac83db30",
"UserId": "3d1f7bc7-fe85-4de1-931b-3737a96f271e",
"TenantId": "d03fa620-2b95-429d-9dde-6754248f2322",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "76506389-e5f7-4244-9868-2d71a4ec697e",
"ProfileProperties": [
{
"Id": "f10ac01f-8b2e-4540-ae37-ef87bd61a91a",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T00:47:27.843184+00:00",
"ProfileId": "5500e5c1-2ab4-433b-834b-8f58835ed61b",
"PropertyTypeId": "002298cc-be34-4c70-b6af-6821115ad109",
"isChecked": true
},
{
"Id": "f10ac01f-8b2e-4540-ae37-ef87bd61a91a",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T00:47:27.843184+00:00",
"ProfileId": "5500e5c1-2ab4-433b-834b-8f58835ed61b",
"PropertyTypeId": "002298cc-be34-4c70-b6af-6821115ad109",
"isChecked": true
}
]
}
application/xml, text/xml
Sample:
<ProfileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Profile.Models">
<CreationDate>2026-01-10T00:47:27.843184+00:00</CreationDate>
<CreatorUserId>0f003d4b-c421-4311-896b-d446ac83db30</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>69a140fb-401f-4387-9578-15b190b807d8</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>76506389-e5f7-4244-9868-2d71a4ec697e</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2026-01-10T00:47:27.843184+00:00</CreationDate>
<Id>f10ac01f-8b2e-4540-ae37-ef87bd61a91a</Id>
<Name>sample string 2</Name>
<ProfileId>5500e5c1-2ab4-433b-834b-8f58835ed61b</ProfileId>
<PropertyTypeId>002298cc-be34-4c70-b6af-6821115ad109</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2026-01-10T00:47:27.843184+00:00</CreationDate>
<Id>f10ac01f-8b2e-4540-ae37-ef87bd61a91a</Id>
<Name>sample string 2</Name>
<ProfileId>5500e5c1-2ab4-433b-834b-8f58835ed61b</ProfileId>
<PropertyTypeId>002298cc-be34-4c70-b6af-6821115ad109</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>d03fa620-2b95-429d-9dde-6754248f2322</TenantId>
<UserId>3d1f7bc7-fe85-4de1-931b-3737a96f271e</UserId>
</ProfileDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.