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": "d2b93e53-2e20-47d7-9731-339a9f40c752",
"CreationDate": "2026-01-10T18:54:25.8485529+00:00",
"CreatorUserId": "1f84f28d-e90b-4e05-b20e-139e6295b520",
"UserId": "b029f169-02df-40fe-a2bd-f3e5b5098035",
"TenantId": "827ff31b-02c4-4000-ab4c-92bbe0df7e0e",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "fc8e56b3-8dbd-4095-923e-e158cd5acef6",
"ProfileProperties": [
{
"Id": "ad926308-9837-4f57-a89b-5a71c770e207",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T18:54:25.8485529+00:00",
"ProfileId": "599d9fb5-9fec-4510-8efe-a0a9e72ce78c",
"PropertyTypeId": "56d2de2e-3671-41bd-9e4b-8f9894a8f337",
"isChecked": true
},
{
"Id": "ad926308-9837-4f57-a89b-5a71c770e207",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T18:54:25.8485529+00:00",
"ProfileId": "599d9fb5-9fec-4510-8efe-a0a9e72ce78c",
"PropertyTypeId": "56d2de2e-3671-41bd-9e4b-8f9894a8f337",
"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-10T18:54:25.8485529+00:00</CreationDate>
<CreatorUserId>1f84f28d-e90b-4e05-b20e-139e6295b520</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>d2b93e53-2e20-47d7-9731-339a9f40c752</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>fc8e56b3-8dbd-4095-923e-e158cd5acef6</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2026-01-10T18:54:25.8485529+00:00</CreationDate>
<Id>ad926308-9837-4f57-a89b-5a71c770e207</Id>
<Name>sample string 2</Name>
<ProfileId>599d9fb5-9fec-4510-8efe-a0a9e72ce78c</ProfileId>
<PropertyTypeId>56d2de2e-3671-41bd-9e4b-8f9894a8f337</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2026-01-10T18:54:25.8485529+00:00</CreationDate>
<Id>ad926308-9837-4f57-a89b-5a71c770e207</Id>
<Name>sample string 2</Name>
<ProfileId>599d9fb5-9fec-4510-8efe-a0a9e72ce78c</ProfileId>
<PropertyTypeId>56d2de2e-3671-41bd-9e4b-8f9894a8f337</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>827ff31b-02c4-4000-ab4c-92bbe0df7e0e</TenantId>
<UserId>b029f169-02df-40fe-a2bd-f3e5b5098035</UserId>
</ProfileDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.