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": "8f7ccf36-5986-42e4-aa4b-7aff28b12487",
"CreationDate": "2025-12-06T03:06:09.8504373+00:00",
"CreatorUserId": "5dd25148-0297-4a71-b934-e9f2cfa9dd88",
"UserId": "a579f83d-21d3-4e0b-ac68-501ae026d162",
"TenantId": "05254e8f-a19e-43aa-85b8-1f56ac9033a6",
"Forename": "sample string 5",
"Surname": "sample string 6",
"JobTitle": "sample string 7",
"Telephone": "sample string 8",
"IsDeleted": true,
"OrganisationId": "96735d62-de6b-43c8-889e-e5702777d723",
"ProfileProperties": [
{
"Id": "f8a6b95e-810c-4949-8f6e-46e8880ec677",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T03:06:09.8504373+00:00",
"ProfileId": "39a4ddd8-b24a-4120-842e-31fd2c10f5c3",
"PropertyTypeId": "7ba114aa-2715-4a45-8365-2897e329662e",
"isChecked": true
},
{
"Id": "f8a6b95e-810c-4949-8f6e-46e8880ec677",
"Name": "sample string 2",
"Value": "sample string 3",
"CreationDate": "2025-12-06T03:06:09.8504373+00:00",
"ProfileId": "39a4ddd8-b24a-4120-842e-31fd2c10f5c3",
"PropertyTypeId": "7ba114aa-2715-4a45-8365-2897e329662e",
"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:06:09.8504373+00:00</CreationDate>
<CreatorUserId>5dd25148-0297-4a71-b934-e9f2cfa9dd88</CreatorUserId>
<Forename>sample string 5</Forename>
<Id>8f7ccf36-5986-42e4-aa4b-7aff28b12487</Id>
<IsDeleted>true</IsDeleted>
<JobTitle>sample string 7</JobTitle>
<OrganisationId>96735d62-de6b-43c8-889e-e5702777d723</OrganisationId>
<ProfileProperties>
<ProfilePropertyDto>
<CreationDate>2025-12-06T03:06:09.8504373+00:00</CreationDate>
<Id>f8a6b95e-810c-4949-8f6e-46e8880ec677</Id>
<Name>sample string 2</Name>
<ProfileId>39a4ddd8-b24a-4120-842e-31fd2c10f5c3</ProfileId>
<PropertyTypeId>7ba114aa-2715-4a45-8365-2897e329662e</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
<ProfilePropertyDto>
<CreationDate>2025-12-06T03:06:09.8504373+00:00</CreationDate>
<Id>f8a6b95e-810c-4949-8f6e-46e8880ec677</Id>
<Name>sample string 2</Name>
<ProfileId>39a4ddd8-b24a-4120-842e-31fd2c10f5c3</ProfileId>
<PropertyTypeId>7ba114aa-2715-4a45-8365-2897e329662e</PropertyTypeId>
<Value>sample string 3</Value>
<isChecked>true</isChecked>
</ProfilePropertyDto>
</ProfileProperties>
<Surname>sample string 6</Surname>
<Telephone>sample string 8</Telephone>
<TenantId>05254e8f-a19e-43aa-85b8-1f56ac9033a6</TenantId>
<UserId>a579f83d-21d3-4e0b-ac68-501ae026d162</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.