POST api/addresses/select/{pageNumber}/{pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber | integer |
Required |
|
| pageSize | integer |
Required |
Body Parameters
AddressesFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CreatorUserId | globally unique identifier |
None. |
|
| ProfileId | globally unique identifier |
None. |
|
| OrganisationId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| IsDeleted | boolean |
None. |
|
| AddressName | string |
None. |
|
| CreationDateFrom | date |
None. |
|
| CreationDateTo | date |
None. |
|
| AddressProperties | Collection of AddressPropertyFilterCriteriaDto |
None. |
|
| Address_Line1 | string |
None. |
|
| City | string |
None. |
|
| Postcode | string |
None. |
|
| OrderByName | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "efc8b9c7-5537-40f0-a421-5dc66d2ee5e0",
"CreatorUserId": "26b63c6e-2c16-4d68-a535-e8168d88e7a2",
"ProfileId": "5718abd8-3688-47ea-9f6a-9639d782ddd3",
"OrganisationId": "bf8e2417-4fd7-4893-a99c-f3c8f4c4001b",
"TenantId": "ca8acef9-7adb-490f-9bf4-da8718919f93",
"IsDeleted": true,
"AddressName": "sample string 1",
"CreationDateFrom": "2026-01-10T18:55:26.5865887+00:00",
"CreationDateTo": "2026-01-10T18:55:26.5865887+00:00",
"AddressProperties": [
{
"Name": "sample string 1",
"Value": "sample string 2"
},
{
"Name": "sample string 1",
"Value": "sample string 2"
}
],
"Address_Line1": "sample string 2",
"City": "sample string 3",
"Postcode": "sample string 4",
"OrderByName": true
}
application/xml, text/xml
Sample:
<AddressesFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Profile.Models.FilterCriteria">
<AddressName>sample string 1</AddressName>
<AddressProperties>
<AddressPropertyFilterCriteriaDto>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
</AddressPropertyFilterCriteriaDto>
<AddressPropertyFilterCriteriaDto>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
</AddressPropertyFilterCriteriaDto>
</AddressProperties>
<Address_Line1>sample string 2</Address_Line1>
<City>sample string 3</City>
<CreationDateFrom>2026-01-10T18:55:26.5865887+00:00</CreationDateFrom>
<CreationDateTo>2026-01-10T18:55:26.5865887+00:00</CreationDateTo>
<CreatorUserId>26b63c6e-2c16-4d68-a535-e8168d88e7a2</CreatorUserId>
<Id>efc8b9c7-5537-40f0-a421-5dc66d2ee5e0</Id>
<IsDeleted>true</IsDeleted>
<OrderByName>true</OrderByName>
<OrganisationId>bf8e2417-4fd7-4893-a99c-f3c8f4c4001b</OrganisationId>
<Postcode>sample string 4</Postcode>
<ProfileId>5718abd8-3688-47ea-9f6a-9639d782ddd3</ProfileId>
<TenantId>ca8acef9-7adb-490f-9bf4-da8718919f93</TenantId>
</AddressesFilterCriteriaDto>
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.