POST api/profiles/create

Request Information

URI Parameters

None.

Body Parameters

Collection of 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": "e10451d5-f5e7-4614-85be-13d2875080a3",
    "CreationDate": "2025-12-06T04:54:13.102149+00:00",
    "CreatorUserId": "a33c91fc-6078-429c-9e17-7d8c4169becb",
    "UserId": "76de5438-0117-45db-802b-ac342c1db405",
    "TenantId": "c8f778b2-f2ff-4d26-b9d8-b931a81bbc81",
    "Forename": "sample string 5",
    "Surname": "sample string 6",
    "JobTitle": "sample string 7",
    "Telephone": "sample string 8",
    "IsDeleted": true,
    "OrganisationId": "052b1491-ede0-4096-a446-90472c4a2d8d",
    "ProfileProperties": [
      {
        "Id": "b1dd042d-127a-4497-80f0-3ef7b25437ed",
        "Name": "sample string 2",
        "Value": "sample string 3",
        "CreationDate": "2025-12-06T04:54:13.102149+00:00",
        "ProfileId": "26c2a13f-a79e-4386-9dec-a429bf1d9682",
        "PropertyTypeId": "e19049c3-4ae5-4154-af3e-235b59db21a3",
        "isChecked": true
      },
      {
        "Id": "b1dd042d-127a-4497-80f0-3ef7b25437ed",
        "Name": "sample string 2",
        "Value": "sample string 3",
        "CreationDate": "2025-12-06T04:54:13.102149+00:00",
        "ProfileId": "26c2a13f-a79e-4386-9dec-a429bf1d9682",
        "PropertyTypeId": "e19049c3-4ae5-4154-af3e-235b59db21a3",
        "isChecked": true
      }
    ]
  },
  {
    "Id": "e10451d5-f5e7-4614-85be-13d2875080a3",
    "CreationDate": "2025-12-06T04:54:13.102149+00:00",
    "CreatorUserId": "a33c91fc-6078-429c-9e17-7d8c4169becb",
    "UserId": "76de5438-0117-45db-802b-ac342c1db405",
    "TenantId": "c8f778b2-f2ff-4d26-b9d8-b931a81bbc81",
    "Forename": "sample string 5",
    "Surname": "sample string 6",
    "JobTitle": "sample string 7",
    "Telephone": "sample string 8",
    "IsDeleted": true,
    "OrganisationId": "052b1491-ede0-4096-a446-90472c4a2d8d",
    "ProfileProperties": [
      {
        "Id": "b1dd042d-127a-4497-80f0-3ef7b25437ed",
        "Name": "sample string 2",
        "Value": "sample string 3",
        "CreationDate": "2025-12-06T04:54:13.102149+00:00",
        "ProfileId": "26c2a13f-a79e-4386-9dec-a429bf1d9682",
        "PropertyTypeId": "e19049c3-4ae5-4154-af3e-235b59db21a3",
        "isChecked": true
      },
      {
        "Id": "b1dd042d-127a-4497-80f0-3ef7b25437ed",
        "Name": "sample string 2",
        "Value": "sample string 3",
        "CreationDate": "2025-12-06T04:54:13.102149+00:00",
        "ProfileId": "26c2a13f-a79e-4386-9dec-a429bf1d9682",
        "PropertyTypeId": "e19049c3-4ae5-4154-af3e-235b59db21a3",
        "isChecked": true
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfProfileDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Profile.Models">
  <ProfileDto>
    <CreationDate>2025-12-06T04:54:13.102149+00:00</CreationDate>
    <CreatorUserId>a33c91fc-6078-429c-9e17-7d8c4169becb</CreatorUserId>
    <Forename>sample string 5</Forename>
    <Id>e10451d5-f5e7-4614-85be-13d2875080a3</Id>
    <IsDeleted>true</IsDeleted>
    <JobTitle>sample string 7</JobTitle>
    <OrganisationId>052b1491-ede0-4096-a446-90472c4a2d8d</OrganisationId>
    <ProfileProperties>
      <ProfilePropertyDto>
        <CreationDate>2025-12-06T04:54:13.102149+00:00</CreationDate>
        <Id>b1dd042d-127a-4497-80f0-3ef7b25437ed</Id>
        <Name>sample string 2</Name>
        <ProfileId>26c2a13f-a79e-4386-9dec-a429bf1d9682</ProfileId>
        <PropertyTypeId>e19049c3-4ae5-4154-af3e-235b59db21a3</PropertyTypeId>
        <Value>sample string 3</Value>
        <isChecked>true</isChecked>
      </ProfilePropertyDto>
      <ProfilePropertyDto>
        <CreationDate>2025-12-06T04:54:13.102149+00:00</CreationDate>
        <Id>b1dd042d-127a-4497-80f0-3ef7b25437ed</Id>
        <Name>sample string 2</Name>
        <ProfileId>26c2a13f-a79e-4386-9dec-a429bf1d9682</ProfileId>
        <PropertyTypeId>e19049c3-4ae5-4154-af3e-235b59db21a3</PropertyTypeId>
        <Value>sample string 3</Value>
        <isChecked>true</isChecked>
      </ProfilePropertyDto>
    </ProfileProperties>
    <Surname>sample string 6</Surname>
    <Telephone>sample string 8</Telephone>
    <TenantId>c8f778b2-f2ff-4d26-b9d8-b931a81bbc81</TenantId>
    <UserId>76de5438-0117-45db-802b-ac342c1db405</UserId>
  </ProfileDto>
  <ProfileDto>
    <CreationDate>2025-12-06T04:54:13.102149+00:00</CreationDate>
    <CreatorUserId>a33c91fc-6078-429c-9e17-7d8c4169becb</CreatorUserId>
    <Forename>sample string 5</Forename>
    <Id>e10451d5-f5e7-4614-85be-13d2875080a3</Id>
    <IsDeleted>true</IsDeleted>
    <JobTitle>sample string 7</JobTitle>
    <OrganisationId>052b1491-ede0-4096-a446-90472c4a2d8d</OrganisationId>
    <ProfileProperties>
      <ProfilePropertyDto>
        <CreationDate>2025-12-06T04:54:13.102149+00:00</CreationDate>
        <Id>b1dd042d-127a-4497-80f0-3ef7b25437ed</Id>
        <Name>sample string 2</Name>
        <ProfileId>26c2a13f-a79e-4386-9dec-a429bf1d9682</ProfileId>
        <PropertyTypeId>e19049c3-4ae5-4154-af3e-235b59db21a3</PropertyTypeId>
        <Value>sample string 3</Value>
        <isChecked>true</isChecked>
      </ProfilePropertyDto>
      <ProfilePropertyDto>
        <CreationDate>2025-12-06T04:54:13.102149+00:00</CreationDate>
        <Id>b1dd042d-127a-4497-80f0-3ef7b25437ed</Id>
        <Name>sample string 2</Name>
        <ProfileId>26c2a13f-a79e-4386-9dec-a429bf1d9682</ProfileId>
        <PropertyTypeId>e19049c3-4ae5-4154-af3e-235b59db21a3</PropertyTypeId>
        <Value>sample string 3</Value>
        <isChecked>true</isChecked>
      </ProfilePropertyDto>
    </ProfileProperties>
    <Surname>sample string 6</Surname>
    <Telephone>sample string 8</Telephone>
    <TenantId>c8f778b2-f2ff-4d26-b9d8-b931a81bbc81</TenantId>
    <UserId>76de5438-0117-45db-802b-ac342c1db405</UserId>
  </ProfileDto>
</ArrayOfProfileDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.