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": "2741fcd5-3d3d-47ef-89ba-69ec57536765",
"CreatorUserId": "5f05c376-8df7-4d75-b9d7-e6483bd4939b",
"ProfileId": "9d9bdd32-062e-4211-8153-dd69a331b9e4",
"OrganisationId": "c115b75a-1c30-419f-b8de-263932c3478a",
"TenantId": "c6cb66d5-c373-4fcb-8c3e-ff2b907f236a",
"IsDeleted": true,
"AddressName": "sample string 1",
"CreationDateFrom": "2025-12-06T04:47:06.8228861+00:00",
"CreationDateTo": "2025-12-06T04:47:06.8228861+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>2025-12-06T04:47:06.8228861+00:00</CreationDateFrom>
<CreationDateTo>2025-12-06T04:47:06.8228861+00:00</CreationDateTo>
<CreatorUserId>5f05c376-8df7-4d75-b9d7-e6483bd4939b</CreatorUserId>
<Id>2741fcd5-3d3d-47ef-89ba-69ec57536765</Id>
<IsDeleted>true</IsDeleted>
<OrderByName>true</OrderByName>
<OrganisationId>c115b75a-1c30-419f-b8de-263932c3478a</OrganisationId>
<Postcode>sample string 4</Postcode>
<ProfileId>9d9bdd32-062e-4211-8153-dd69a331b9e4</ProfileId>
<TenantId>c6cb66d5-c373-4fcb-8c3e-ff2b907f236a</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.