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": "14b42ae4-7119-45a0-9a7f-6658467c39a0",
"CreationDate": "2025-12-06T04:54:12.1003997+00:00",
"CreatorUserId": "3f4b4899-57c6-4ca6-86ec-21e78c4e642f",
"UserId": "605c0b28-9ccc-489f-9be1-c819675da34e",
"TenantId": "9a172958-d00f-4daf-9d25-7b1bea0f283d",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "b9573932-b614-4e8f-a61c-f7d0a3090532",
"ProfileProperties": [
{
"Id": "67d45c12-e281-4e01-ae06-a207a45170a1",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:54:12.1003997+00:00",
"ProfileId": "b38a259f-3ec3-4dd5-9e8a-95461f406fd2",
"PropertyTypeId": "2bdbfbd2-754f-41c4-acc3-1e81b2bce44d",
"isChecked": true
},
{
"Id": "67d45c12-e281-4e01-ae06-a207a45170a1",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T04:54:12.1003997+00:00",
"ProfileId": "b38a259f-3ec3-4dd5-9e8a-95461f406fd2",
"PropertyTypeId": "2bdbfbd2-754f-41c4-acc3-1e81b2bce44d",
"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:54:12.1003997+00:00</CreationDate>
<CreatorUserId>3f4b4899-57c6-4ca6-86ec-21e78c4e642f</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>14b42ae4-7119-45a0-9a7f-6658467c39a0</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>b9573932-b614-4e8f-a61c-f7d0a3090532</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2025-12-06T04:54:12.1003997+00:00</CreationDate>
<Id>67d45c12-e281-4e01-ae06-a207a45170a1</Id>
<Name>sample string 2</Name>
<ProfileId>b38a259f-3ec3-4dd5-9e8a-95461f406fd2</ProfileId>
<PropertyTypeId>2bdbfbd2-754f-41c4-acc3-1e81b2bce44d</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2025-12-06T04:54:12.1003997+00:00</CreationDate>
<Id>67d45c12-e281-4e01-ae06-a207a45170a1</Id>
<Name>sample string 2</Name>
<ProfileId>b38a259f-3ec3-4dd5-9e8a-95461f406fd2</ProfileId>
<PropertyTypeId>2bdbfbd2-754f-41c4-acc3-1e81b2bce44d</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>9a172958-d00f-4daf-9d25-7b1bea0f283d</TenantId>
<UserId>605c0b28-9ccc-489f-9be1-c819675da34e</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.