POST Identities
Creates a new Identity.
Request Information
URI Parameters
None.
Body Parameters
The data of the IdentityDto.
IdentityDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNetwork | globally unique identifier |
None. |
|
| IdentityNumber | string |
None. |
|
| IdentityNumberType | byte |
None. |
|
| Name | string |
None. |
|
| Alias | string |
None. |
|
| BirthDate | date |
None. |
|
| StreetAddress | string |
None. |
|
| ZipCode | string |
None. |
|
| PhoneNumber | string |
None. |
|
| ProfilePicture | string |
None. |
|
| ReportedIdentityNumber | string |
None. |
|
| ReportedCountry | string |
None. |
|
| ReportedFirstName | string |
None. |
|
| ReportedLastName | string |
None. |
|
| ReportedSex | string |
None. |
|
| ReportedBirthDate | string |
None. |
|
| ReportedIssueDate | string |
None. |
|
| ReportedProcedureNumber | string |
None. |
|
| ReportedCopy | string |
None. |
|
| UserConsent | boolean |
None. |
|
| CreatedRealDate | date |
None. |
|
| CreatedNetworkDate | date |
None. |
|
| NetworkTimezoneCode | string |
None. |
|
| UpdateRealDate | date |
None. |
|
| UpdateNetworkDate | date |
None. |
|
| LoyaltyIdentifications | Collection of IdentityLoyaltyIdentificationDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "bde825b7-3c6c-45a1-871d-918d83cd412b",
"IdNetwork": "f7310642-deb9-452b-82c1-74b8cb87be0e",
"IdentityNumber": "sample string 3",
"IdentityNumberType": 64,
"Name": "sample string 4",
"Alias": "sample string 5",
"BirthDate": "2026-03-13T12:24:47.1387185Z",
"StreetAddress": "sample string 6",
"ZipCode": "sample string 7",
"PhoneNumber": "sample string 8",
"ProfilePicture": "sample string 9",
"ReportedIdentityNumber": "sample string 10",
"ReportedCountry": "sample string 11",
"ReportedFirstName": "sample string 12",
"ReportedLastName": "sample string 13",
"ReportedSex": "sample string 14",
"ReportedBirthDate": "sample string 15",
"ReportedIssueDate": "sample string 16",
"ReportedProcedureNumber": "sample string 17",
"ReportedCopy": "sample string 18",
"UserConsent": true,
"CreatedRealDate": "2026-03-13T12:24:47.1387185Z",
"CreatedNetworkDate": "2026-03-13T12:24:47.1387185Z",
"NetworkTimezoneCode": "sample string 22",
"UpdateRealDate": "2026-03-13T12:24:47.1387185Z",
"UpdateNetworkDate": "2026-03-13T12:24:47.1387185Z",
"LoyaltyIdentifications": [
{
"Id": "7984dda5-a6b5-4d89-9a8e-c528f183e066",
"IdCommunity": "7a7c72a1-cda3-4662-a180-c36529d02ec0",
"IdCompany": "7cc31b82-c635-43d5-8491-a45f39f0e48e",
"IdFleet": "04c5396e-72c5-4038-a764-c17931be8bf5",
"CommunityName": "sample string 4",
"CommunityTarget": 1,
"Label": "sample string 5",
"TrackNumber": "sample string 6",
"Type": 7,
"IdIdentificationModel": "3ea1801b-269a-428d-9c6a-f82a199cdb0c",
"Active": true,
"PAN": "sample string 10"
},
{
"Id": "7984dda5-a6b5-4d89-9a8e-c528f183e066",
"IdCommunity": "7a7c72a1-cda3-4662-a180-c36529d02ec0",
"IdCompany": "7cc31b82-c635-43d5-8491-a45f39f0e48e",
"IdFleet": "04c5396e-72c5-4038-a764-c17931be8bf5",
"CommunityName": "sample string 4",
"CommunityTarget": 1,
"Label": "sample string 5",
"TrackNumber": "sample string 6",
"Type": 7,
"IdIdentificationModel": "3ea1801b-269a-428d-9c6a-f82a199cdb0c",
"Active": true,
"PAN": "sample string 10"
}
]
}
application/xml, text/xml
Sample:
<IdentityDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<Alias>sample string 5</Alias>
<BirthDate>2026-03-13T12:24:47.1387185Z</BirthDate>
<CreatedNetworkDate>2026-03-13T12:24:47.1387185Z</CreatedNetworkDate>
<CreatedRealDate>2026-03-13T12:24:47.1387185Z</CreatedRealDate>
<Id>bde825b7-3c6c-45a1-871d-918d83cd412b</Id>
<IdNetwork>f7310642-deb9-452b-82c1-74b8cb87be0e</IdNetwork>
<IdentityNumber>sample string 3</IdentityNumber>
<IdentityNumberType>64</IdentityNumberType>
<LoyaltyIdentifications xmlns:d2p1="http://schemas.datacontract.org/2004/07/Ationet.Model.Community">
<d2p1:IdentityLoyaltyIdentificationDto>
<d2p1:Active>true</d2p1:Active>
<d2p1:CommunityName>sample string 4</d2p1:CommunityName>
<d2p1:CommunityTarget>1</d2p1:CommunityTarget>
<d2p1:Id>7984dda5-a6b5-4d89-9a8e-c528f183e066</d2p1:Id>
<d2p1:IdCommunity>7a7c72a1-cda3-4662-a180-c36529d02ec0</d2p1:IdCommunity>
<d2p1:IdCompany>7cc31b82-c635-43d5-8491-a45f39f0e48e</d2p1:IdCompany>
<d2p1:IdFleet>04c5396e-72c5-4038-a764-c17931be8bf5</d2p1:IdFleet>
<d2p1:IdIdentificationModel>3ea1801b-269a-428d-9c6a-f82a199cdb0c</d2p1:IdIdentificationModel>
<d2p1:Label>sample string 5</d2p1:Label>
<d2p1:PAN>sample string 10</d2p1:PAN>
<d2p1:TrackNumber>sample string 6</d2p1:TrackNumber>
<d2p1:Type>7</d2p1:Type>
</d2p1:IdentityLoyaltyIdentificationDto>
<d2p1:IdentityLoyaltyIdentificationDto>
<d2p1:Active>true</d2p1:Active>
<d2p1:CommunityName>sample string 4</d2p1:CommunityName>
<d2p1:CommunityTarget>1</d2p1:CommunityTarget>
<d2p1:Id>7984dda5-a6b5-4d89-9a8e-c528f183e066</d2p1:Id>
<d2p1:IdCommunity>7a7c72a1-cda3-4662-a180-c36529d02ec0</d2p1:IdCommunity>
<d2p1:IdCompany>7cc31b82-c635-43d5-8491-a45f39f0e48e</d2p1:IdCompany>
<d2p1:IdFleet>04c5396e-72c5-4038-a764-c17931be8bf5</d2p1:IdFleet>
<d2p1:IdIdentificationModel>3ea1801b-269a-428d-9c6a-f82a199cdb0c</d2p1:IdIdentificationModel>
<d2p1:Label>sample string 5</d2p1:Label>
<d2p1:PAN>sample string 10</d2p1:PAN>
<d2p1:TrackNumber>sample string 6</d2p1:TrackNumber>
<d2p1:Type>7</d2p1:Type>
</d2p1:IdentityLoyaltyIdentificationDto>
</LoyaltyIdentifications>
<Name>sample string 4</Name>
<NetworkTimezoneCode>sample string 22</NetworkTimezoneCode>
<PhoneNumber>sample string 8</PhoneNumber>
<ProfilePicture>sample string 9</ProfilePicture>
<ReportedBirthDate>sample string 15</ReportedBirthDate>
<ReportedCopy>sample string 18</ReportedCopy>
<ReportedCountry>sample string 11</ReportedCountry>
<ReportedFirstName>sample string 12</ReportedFirstName>
<ReportedIdentityNumber>sample string 10</ReportedIdentityNumber>
<ReportedIssueDate>sample string 16</ReportedIssueDate>
<ReportedLastName>sample string 13</ReportedLastName>
<ReportedProcedureNumber>sample string 17</ReportedProcedureNumber>
<ReportedSex>sample string 14</ReportedSex>
<StreetAddress>sample string 6</StreetAddress>
<UpdateNetworkDate>2026-03-13T12:24:47.1387185Z</UpdateNetworkDate>
<UpdateRealDate>2026-03-13T12:24:47.1387185Z</UpdateRealDate>
<UserConsent>true</UserConsent>
<ZipCode>sample string 7</ZipCode>
</IdentityDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
State of the action, and if created returns the zone as IdentityDto and the link to de identity.
IdentityDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNetwork | globally unique identifier |
None. |
|
| IdentityNumber | string |
None. |
|
| IdentityNumberType | byte |
None. |
|
| Name | string |
None. |
|
| Alias | string |
None. |
|
| BirthDate | date |
None. |
|
| StreetAddress | string |
None. |
|
| ZipCode | string |
None. |
|
| PhoneNumber | string |
None. |
|
| ProfilePicture | string |
None. |
|
| ReportedIdentityNumber | string |
None. |
|
| ReportedCountry | string |
None. |
|
| ReportedFirstName | string |
None. |
|
| ReportedLastName | string |
None. |
|
| ReportedSex | string |
None. |
|
| ReportedBirthDate | string |
None. |
|
| ReportedIssueDate | string |
None. |
|
| ReportedProcedureNumber | string |
None. |
|
| ReportedCopy | string |
None. |
|
| UserConsent | boolean |
None. |
|
| CreatedRealDate | date |
None. |
|
| CreatedNetworkDate | date |
None. |
|
| NetworkTimezoneCode | string |
None. |
|
| UpdateRealDate | date |
None. |
|
| UpdateNetworkDate | date |
None. |
|
| LoyaltyIdentifications | Collection of IdentityLoyaltyIdentificationDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "72a80bf8-d052-437d-8722-3a06f403b568",
"IdNetwork": "ad275e63-0a95-4420-bd68-f01bcc3f8535",
"IdentityNumber": "sample string 3",
"IdentityNumberType": 64,
"Name": "sample string 4",
"Alias": "sample string 5",
"BirthDate": "2026-03-13T12:24:47.4199721Z",
"StreetAddress": "sample string 6",
"ZipCode": "sample string 7",
"PhoneNumber": "sample string 8",
"ProfilePicture": "sample string 9",
"ReportedIdentityNumber": "sample string 10",
"ReportedCountry": "sample string 11",
"ReportedFirstName": "sample string 12",
"ReportedLastName": "sample string 13",
"ReportedSex": "sample string 14",
"ReportedBirthDate": "sample string 15",
"ReportedIssueDate": "sample string 16",
"ReportedProcedureNumber": "sample string 17",
"ReportedCopy": "sample string 18",
"UserConsent": true,
"CreatedRealDate": "2026-03-13T12:24:47.4199721Z",
"CreatedNetworkDate": "2026-03-13T12:24:47.4199721Z",
"NetworkTimezoneCode": "sample string 22",
"UpdateRealDate": "2026-03-13T12:24:47.4199721Z",
"UpdateNetworkDate": "2026-03-13T12:24:47.4199721Z",
"LoyaltyIdentifications": [
{
"Id": "070b2e10-9db1-40e3-a116-ee12c8174ca5",
"IdCommunity": "e4cc0e37-188d-4455-8d26-f727ea3bbb7b",
"IdCompany": "18f23645-b860-4a03-b7e5-a31a571395d5",
"IdFleet": "f84618b7-aa1f-4409-bacf-178ae9e5ae7d",
"CommunityName": "sample string 4",
"CommunityTarget": 1,
"Label": "sample string 5",
"TrackNumber": "sample string 6",
"Type": 7,
"IdIdentificationModel": "f8513e1d-064f-4b58-839a-f3ca8451b195",
"Active": true,
"PAN": "sample string 10"
},
{
"Id": "070b2e10-9db1-40e3-a116-ee12c8174ca5",
"IdCommunity": "e4cc0e37-188d-4455-8d26-f727ea3bbb7b",
"IdCompany": "18f23645-b860-4a03-b7e5-a31a571395d5",
"IdFleet": "f84618b7-aa1f-4409-bacf-178ae9e5ae7d",
"CommunityName": "sample string 4",
"CommunityTarget": 1,
"Label": "sample string 5",
"TrackNumber": "sample string 6",
"Type": 7,
"IdIdentificationModel": "f8513e1d-064f-4b58-839a-f3ca8451b195",
"Active": true,
"PAN": "sample string 10"
}
]
}
application/xml, text/xml
Sample:
<IdentityDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<Alias>sample string 5</Alias>
<BirthDate>2026-03-13T12:24:47.4199721Z</BirthDate>
<CreatedNetworkDate>2026-03-13T12:24:47.4199721Z</CreatedNetworkDate>
<CreatedRealDate>2026-03-13T12:24:47.4199721Z</CreatedRealDate>
<Id>72a80bf8-d052-437d-8722-3a06f403b568</Id>
<IdNetwork>ad275e63-0a95-4420-bd68-f01bcc3f8535</IdNetwork>
<IdentityNumber>sample string 3</IdentityNumber>
<IdentityNumberType>64</IdentityNumberType>
<LoyaltyIdentifications xmlns:d2p1="http://schemas.datacontract.org/2004/07/Ationet.Model.Community">
<d2p1:IdentityLoyaltyIdentificationDto>
<d2p1:Active>true</d2p1:Active>
<d2p1:CommunityName>sample string 4</d2p1:CommunityName>
<d2p1:CommunityTarget>1</d2p1:CommunityTarget>
<d2p1:Id>070b2e10-9db1-40e3-a116-ee12c8174ca5</d2p1:Id>
<d2p1:IdCommunity>e4cc0e37-188d-4455-8d26-f727ea3bbb7b</d2p1:IdCommunity>
<d2p1:IdCompany>18f23645-b860-4a03-b7e5-a31a571395d5</d2p1:IdCompany>
<d2p1:IdFleet>f84618b7-aa1f-4409-bacf-178ae9e5ae7d</d2p1:IdFleet>
<d2p1:IdIdentificationModel>f8513e1d-064f-4b58-839a-f3ca8451b195</d2p1:IdIdentificationModel>
<d2p1:Label>sample string 5</d2p1:Label>
<d2p1:PAN>sample string 10</d2p1:PAN>
<d2p1:TrackNumber>sample string 6</d2p1:TrackNumber>
<d2p1:Type>7</d2p1:Type>
</d2p1:IdentityLoyaltyIdentificationDto>
<d2p1:IdentityLoyaltyIdentificationDto>
<d2p1:Active>true</d2p1:Active>
<d2p1:CommunityName>sample string 4</d2p1:CommunityName>
<d2p1:CommunityTarget>1</d2p1:CommunityTarget>
<d2p1:Id>070b2e10-9db1-40e3-a116-ee12c8174ca5</d2p1:Id>
<d2p1:IdCommunity>e4cc0e37-188d-4455-8d26-f727ea3bbb7b</d2p1:IdCommunity>
<d2p1:IdCompany>18f23645-b860-4a03-b7e5-a31a571395d5</d2p1:IdCompany>
<d2p1:IdFleet>f84618b7-aa1f-4409-bacf-178ae9e5ae7d</d2p1:IdFleet>
<d2p1:IdIdentificationModel>f8513e1d-064f-4b58-839a-f3ca8451b195</d2p1:IdIdentificationModel>
<d2p1:Label>sample string 5</d2p1:Label>
<d2p1:PAN>sample string 10</d2p1:PAN>
<d2p1:TrackNumber>sample string 6</d2p1:TrackNumber>
<d2p1:Type>7</d2p1:Type>
</d2p1:IdentityLoyaltyIdentificationDto>
</LoyaltyIdentifications>
<Name>sample string 4</Name>
<NetworkTimezoneCode>sample string 22</NetworkTimezoneCode>
<PhoneNumber>sample string 8</PhoneNumber>
<ProfilePicture>sample string 9</ProfilePicture>
<ReportedBirthDate>sample string 15</ReportedBirthDate>
<ReportedCopy>sample string 18</ReportedCopy>
<ReportedCountry>sample string 11</ReportedCountry>
<ReportedFirstName>sample string 12</ReportedFirstName>
<ReportedIdentityNumber>sample string 10</ReportedIdentityNumber>
<ReportedIssueDate>sample string 16</ReportedIssueDate>
<ReportedLastName>sample string 13</ReportedLastName>
<ReportedProcedureNumber>sample string 17</ReportedProcedureNumber>
<ReportedSex>sample string 14</ReportedSex>
<StreetAddress>sample string 6</StreetAddress>
<UpdateNetworkDate>2026-03-13T12:24:47.4199721Z</UpdateNetworkDate>
<UpdateRealDate>2026-03-13T12:24:47.4199721Z</UpdateRealDate>
<UserConsent>true</UserConsent>
<ZipCode>sample string 7</ZipCode>
</IdentityDto>