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": "77fa4872-8f25-4f7f-9f4f-f0163ee8f7a2",
"CreationDate": "2026-01-10T10:21:58.9261007+00:00",
"CreatorUserId": "0a0dac68-bcf5-4855-b267-efcdc7f35c58",
"UserId": "8e1e933b-8965-4224-8def-4ff66ad75fb7",
"TenantId": "f93ec37b-ad1c-472d-af5b-21847dd5d80f",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "41e899da-bcfa-491b-bce5-abe0200f5510",
"ProfileProperties": [
{
"Id": "d56d9cb7-d6b6-4297-a713-156a02fd1c8e",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T10:21:58.9261007+00:00",
"ProfileId": "ed3b039a-2302-4b14-8140-9a8f7ba71d38",
"PropertyTypeId": "dc6de463-e8d7-4d89-a0e5-68756fb3d85d",
"isChecked": true
},
{
"Id": "d56d9cb7-d6b6-4297-a713-156a02fd1c8e",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2026-01-10T10:21:58.9261007+00:00",
"ProfileId": "ed3b039a-2302-4b14-8140-9a8f7ba71d38",
"PropertyTypeId": "dc6de463-e8d7-4d89-a0e5-68756fb3d85d",
"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-10T10:21:58.9261007+00:00</CreationDate>
<CreatorUserId>0a0dac68-bcf5-4855-b267-efcdc7f35c58</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>77fa4872-8f25-4f7f-9f4f-f0163ee8f7a2</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>41e899da-bcfa-491b-bce5-abe0200f5510</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2026-01-10T10:21:58.9261007+00:00</CreationDate>
<Id>d56d9cb7-d6b6-4297-a713-156a02fd1c8e</Id>
<Name>sample string 2</Name>
<ProfileId>ed3b039a-2302-4b14-8140-9a8f7ba71d38</ProfileId>
<PropertyTypeId>dc6de463-e8d7-4d89-a0e5-68756fb3d85d</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2026-01-10T10:21:58.9261007+00:00</CreationDate>
<Id>d56d9cb7-d6b6-4297-a713-156a02fd1c8e</Id>
<Name>sample string 2</Name>
<ProfileId>ed3b039a-2302-4b14-8140-9a8f7ba71d38</ProfileId>
<PropertyTypeId>dc6de463-e8d7-4d89-a0e5-68756fb3d85d</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>f93ec37b-ad1c-472d-af5b-21847dd5d80f</TenantId>
<UserId>8e1e933b-8965-4224-8def-4ff66ad75fb7</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.