PUT api/profiles/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

ProfileDto
NameDescriptionTypeAdditional 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": "3ca60ec9-7c0f-4cc8-9325-e3b944801d8f",
  "CreationDate": "2025-12-06T03:07:13.3355024+00:00",
  "CreatorUserId": "5a0a1c3a-aad2-4e42-a390-2332231cce88",
  "UserId": "9688d1c7-ed74-440b-8651-8028d4f07674",
  "TenantId": "00eb6e96-799a-4c5d-ac12-5edf23b3a478",
  "Forename": "sample string 5",
  "Surname": "sample string 6",
  "JobTitle": "sample string 7",
  "Telephone": "sample string 8",
  "IsDeleted": true,
  "OrganisationId": "b612c08f-19ef-4bc0-9310-fbc974aed84d",
  "ProfileProperties": [
    {
      "Id": "d309d8b5-b0a6-410c-81bb-5fa50938ca84",
      "Name": "sample string 2",
      "Value": "sample string 3",
      "CreationDate": "2025-12-06T03:07:13.3355024+00:00",
      "ProfileId": "8b168a38-e762-4fdc-9d9f-5235b3fd15cc",
      "PropertyTypeId": "aaac534b-c8da-4d2e-908f-764627478338",
      "isChecked": true
    },
    {
      "Id": "d309d8b5-b0a6-410c-81bb-5fa50938ca84",
      "Name": "sample string 2",
      "Value": "sample string 3",
      "CreationDate": "2025-12-06T03:07:13.3355024+00:00",
      "ProfileId": "8b168a38-e762-4fdc-9d9f-5235b3fd15cc",
      "PropertyTypeId": "aaac534b-c8da-4d2e-908f-764627478338",
      "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-06T03:07:13.3355024+00:00</CreationDate>
  <CreatorUserId>5a0a1c3a-aad2-4e42-a390-2332231cce88</CreatorUserId>
  <Forename>sample string 5</Forename>
  <Id>3ca60ec9-7c0f-4cc8-9325-e3b944801d8f</Id>
  <IsDeleted>true</IsDeleted>
  <JobTitle>sample string 7</JobTitle>
  <OrganisationId>b612c08f-19ef-4bc0-9310-fbc974aed84d</OrganisationId>
  <ProfileProperties>
    <ProfilePropertyDto>
      <CreationDate>2025-12-06T03:07:13.3355024+00:00</CreationDate>
      <Id>d309d8b5-b0a6-410c-81bb-5fa50938ca84</Id>
      <Name>sample string 2</Name>
      <ProfileId>8b168a38-e762-4fdc-9d9f-5235b3fd15cc</ProfileId>
      <PropertyTypeId>aaac534b-c8da-4d2e-908f-764627478338</PropertyTypeId>
      <Value>sample string 3</Value>
      <isChecked>true</isChecked>
    </ProfilePropertyDto>
    <ProfilePropertyDto>
      <CreationDate>2025-12-06T03:07:13.3355024+00:00</CreationDate>
      <Id>d309d8b5-b0a6-410c-81bb-5fa50938ca84</Id>
      <Name>sample string 2</Name>
      <ProfileId>8b168a38-e762-4fdc-9d9f-5235b3fd15cc</ProfileId>
      <PropertyTypeId>aaac534b-c8da-4d2e-908f-764627478338</PropertyTypeId>
      <Value>sample string 3</Value>
      <isChecked>true</isChecked>
    </ProfilePropertyDto>
  </ProfileProperties>
  <Surname>sample string 6</Surname>
  <Telephone>sample string 8</Telephone>
  <TenantId>00eb6e96-799a-4c5d-ac12-5edf23b3a478</TenantId>
  <UserId>9688d1c7-ed74-440b-8651-8028d4f07674</UserId>
</ProfileDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.