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": "13054b7c-2db6-4539-a3f2-fa01824dd19d",
"CreationDate": "2025-12-06T04:52:19.5719181+00:00",
"CreatorUserId": "f92a4560-8f81-495e-9683-812d6fa26c3e",
"UserId": "b4b2f9d3-f3b0-43ac-a2be-7f4a1790143f",
"TenantId": "6f482d71-8070-4012-837d-b4d421748397",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "959102ed-9517-4cfb-ab5a-19a831c8b02a",
"ProfileProperties": [
{
"Id": "1ea50797-705c-430c-a7fc-ffbde5500700",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:52:19.5719181+00:00",
"ProfileId": "832fa38d-6f03-40ca-bdf8-11facd95301b",
"PropertyTypeId": "3af1ed72-bbaa-4e5f-ab9b-59b3264eb186",
"isChecked": true
},
{
"Id": "1ea50797-705c-430c-a7fc-ffbde5500700",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:52:19.5719181+00:00",
"ProfileId": "832fa38d-6f03-40ca-bdf8-11facd95301b",
"PropertyTypeId": "3af1ed72-bbaa-4e5f-ab9b-59b3264eb186",
"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>2025-12-06T04:52:19.5719181+00:00</CreationDate>
<CreatorUserId>f92a4560-8f81-495e-9683-812d6fa26c3e</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>13054b7c-2db6-4539-a3f2-fa01824dd19d</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>959102ed-9517-4cfb-ab5a-19a831c8b02a</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2025-12-06T04:52:19.5719181+00:00</CreationDate>
<Id>1ea50797-705c-430c-a7fc-ffbde5500700</Id>
<Name>sample string 2</Name>
<ProfileId>832fa38d-6f03-40ca-bdf8-11facd95301b</ProfileId>
<PropertyTypeId>3af1ed72-bbaa-4e5f-ab9b-59b3264eb186</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2025-12-06T04:52:19.5719181+00:00</CreationDate>
<Id>1ea50797-705c-430c-a7fc-ffbde5500700</Id>
<Name>sample string 2</Name>
<ProfileId>832fa38d-6f03-40ca-bdf8-11facd95301b</ProfileId>
<PropertyTypeId>3af1ed72-bbaa-4e5f-ab9b-59b3264eb186</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>6f482d71-8070-4012-837d-b4d421748397</TenantId>
<UserId>b4b2f9d3-f3b0-43ac-a2be-7f4a1790143f</UserId>
</ProfileDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.