POST api/profiles
Request Information
URI Parameters
None.
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": "50b0f8dc-3caa-436e-8128-9a963d3c3faa",
"CreationDate": "2026-01-10T18:55:47.022995+00:00",
"CreatorUserId": "f3b0c1a1-73e6-4a3c-af19-09634ca5024e",
"UserId": "69a77c36-5e24-446a-976a-5f08c7db75d4",
"TenantId": "53a45816-9b8a-4183-bb93-8f3d78574873",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "4e0f17a5-c03d-48ad-94cc-624e8af47eb6",
"ProfileProperties": [
{
"Id": "617f538c-54c3-4296-8a20-efb4233fcf37",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T18:55:47.022995+00:00",
"ProfileId": "1a5e8d27-bd9e-4fbf-8ac5-de66ef44ab3c",
"PropertyTypeId": "200d115d-e40a-4333-a068-b81076b28de5",
"isChecked": true
},
{
"Id": "617f538c-54c3-4296-8a20-efb4233fcf37",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T18:55:47.022995+00:00",
"ProfileId": "1a5e8d27-bd9e-4fbf-8ac5-de66ef44ab3c",
"PropertyTypeId": "200d115d-e40a-4333-a068-b81076b28de5",
"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:55:47.022995+00:00</CreationDate>
<CreatorUserId>f3b0c1a1-73e6-4a3c-af19-09634ca5024e</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>50b0f8dc-3caa-436e-8128-9a963d3c3faa</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>4e0f17a5-c03d-48ad-94cc-624e8af47eb6</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2026-01-10T18:55:47.022995+00:00</CreationDate>
<Id>617f538c-54c3-4296-8a20-efb4233fcf37</Id>
<Name>sample string 2</Name>
<ProfileId>1a5e8d27-bd9e-4fbf-8ac5-de66ef44ab3c</ProfileId>
<PropertyTypeId>200d115d-e40a-4333-a068-b81076b28de5</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2026-01-10T18:55:47.022995+00:00</CreationDate>
<Id>617f538c-54c3-4296-8a20-efb4233fcf37</Id>
<Name>sample string 2</Name>
<ProfileId>1a5e8d27-bd9e-4fbf-8ac5-de66ef44ab3c</ProfileId>
<PropertyTypeId>200d115d-e40a-4333-a068-b81076b28de5</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>53a45816-9b8a-4183-bb93-8f3d78574873</TenantId>
<UserId>69a77c36-5e24-446a-976a-5f08c7db75d4</UserId>
</ProfileDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.