POST api/campaigns/selectPaged/{pageNumber}/{pageSize}
Retrieves a paged list of campaigns that match the given criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber |
The page number to retrieve. |
integer |
Required |
| pageSize |
The number of records per page. |
integer |
Required |
Body Parameters
The criteria model to filter campaigns by.
PayCampaignFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| SearchQuery | string |
None. |
|
| IsTemporary | boolean |
None. |
|
| Completed | boolean |
None. |
|
| OrderStatus | string |
None. |
|
| UserJourney | string |
None. |
|
| CreationDateStartUtc | date |
None. |
|
| CreationDateEndUtc | date |
None. |
|
| ModifiedDateStartUtc | date |
None. |
|
| ModifiedDateEndUtc | date |
None. |
|
| PaymentDateStartUtc | date |
None. |
|
| PaymentDateEndUtc | date |
None. |
|
| SupplierIds | Collection of globally unique identifier |
None. |
|
| VoucherId | integer |
None. |
|
| OrganisationId | globally unique identifier |
None. |
|
| CentralMailerCampaignId | globally unique identifier |
None. |
|
| OrgIds | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "aa22822e-6f15-44e4-b1db-510a42abf885",
"Name": "sample string 1",
"TenantId": "c4c3aba7-9790-4d4b-b350-9ea66c62d3b9",
"UserId": "24315eea-b762-4344-8d17-9d4b406b6f49",
"SearchQuery": "sample string 2",
"IsTemporary": true,
"Completed": true,
"OrderStatus": "sample string 3",
"UserJourney": "sample string 4",
"CreationDateStartUtc": "2026-01-21T09:53:28.9110754+00:00",
"CreationDateEndUtc": "2026-01-21T09:53:28.9110754+00:00",
"ModifiedDateStartUtc": "2026-01-21T09:53:28.9110754+00:00",
"ModifiedDateEndUtc": "2026-01-21T09:53:28.9110754+00:00",
"PaymentDateStartUtc": "2026-01-21T09:53:28.9110754+00:00",
"PaymentDateEndUtc": "2026-01-21T09:53:28.9110754+00:00",
"SupplierIds": [
"129078d8-2399-4a4c-a483-fe0808fa121f",
"359afec0-53a4-4093-bcdc-564a00543ef8"
],
"VoucherId": 1,
"OrganisationId": "b1aac31d-8fc7-48fb-a107-14cdddc8453c",
"CentralMailerCampaignId": "26245d4c-31c1-4c5f-a7ca-8b10b7d5e643",
"OrgIds": [
"af38d103-62bd-4463-ad6d-5186e6c0f797",
"0c0367b1-2473-41ae-839d-a325aa15267f"
]
}
application/xml, text/xml
Sample:
<PayCampaignFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Pay.Models.FilterCriteria">
<CentralMailerCampaignId>26245d4c-31c1-4c5f-a7ca-8b10b7d5e643</CentralMailerCampaignId>
<Completed>true</Completed>
<CreationDateEndUtc>2026-01-21T09:53:28.9110754+00:00</CreationDateEndUtc>
<CreationDateStartUtc>2026-01-21T09:53:28.9110754+00:00</CreationDateStartUtc>
<Id>aa22822e-6f15-44e4-b1db-510a42abf885</Id>
<IsTemporary>true</IsTemporary>
<ModifiedDateEndUtc>2026-01-21T09:53:28.9110754+00:00</ModifiedDateEndUtc>
<ModifiedDateStartUtc>2026-01-21T09:53:28.9110754+00:00</ModifiedDateStartUtc>
<Name>sample string 1</Name>
<OrderStatus>sample string 3</OrderStatus>
<OrgIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>af38d103-62bd-4463-ad6d-5186e6c0f797</d2p1:guid>
<d2p1:guid>0c0367b1-2473-41ae-839d-a325aa15267f</d2p1:guid>
</OrgIds>
<OrganisationId>b1aac31d-8fc7-48fb-a107-14cdddc8453c</OrganisationId>
<PaymentDateEndUtc>2026-01-21T09:53:28.9110754+00:00</PaymentDateEndUtc>
<PaymentDateStartUtc>2026-01-21T09:53:28.9110754+00:00</PaymentDateStartUtc>
<SearchQuery>sample string 2</SearchQuery>
<SupplierIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>129078d8-2399-4a4c-a483-fe0808fa121f</d2p1:guid>
<d2p1:guid>359afec0-53a4-4093-bcdc-564a00543ef8</d2p1:guid>
</SupplierIds>
<TenantId>c4c3aba7-9790-4d4b-b350-9ea66c62d3b9</TenantId>
<UserId>24315eea-b762-4344-8d17-9d4b406b6f49</UserId>
<UserJourney>sample string 4</UserJourney>
<VoucherId>1</VoucherId>
</PayCampaignFilterCriteria>
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.