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": "c3e75aa7-6ae7-408b-8847-3b07a1d4456f",
"Name": "sample string 1",
"TenantId": "804495be-36fd-4814-a7b5-a111566865db",
"UserId": "53b89200-c6a7-4699-b44b-e3837925270d",
"SearchQuery": "sample string 2",
"IsTemporary": true,
"Completed": true,
"OrderStatus": "sample string 3",
"UserJourney": "sample string 4",
"CreationDateStartUtc": "2026-03-16T13:57:09.4410319+00:00",
"CreationDateEndUtc": "2026-03-16T13:57:09.4410319+00:00",
"ModifiedDateStartUtc": "2026-03-16T13:57:09.4410319+00:00",
"ModifiedDateEndUtc": "2026-03-16T13:57:09.4410319+00:00",
"PaymentDateStartUtc": "2026-03-16T13:57:09.4410319+00:00",
"PaymentDateEndUtc": "2026-03-16T13:57:09.4410319+00:00",
"SupplierIds": [
"4a69d213-e85a-4b09-a62c-080ec4189fc1",
"1e4496af-600d-49fe-8197-4ab2767182d1"
],
"VoucherId": 1,
"OrganisationId": "68ca7691-7305-4ca8-a1ab-f0245e6c89dd",
"CentralMailerCampaignId": "db43ae3a-952f-4b83-970c-8b4cf6ab59bb",
"OrgIds": [
"94c00ca6-acdc-42e3-bd17-7792ac2fbe51",
"19be0e25-0fed-42e0-9681-867f0276e97b"
]
}
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>db43ae3a-952f-4b83-970c-8b4cf6ab59bb</CentralMailerCampaignId>
<Completed>true</Completed>
<CreationDateEndUtc>2026-03-16T13:57:09.4410319+00:00</CreationDateEndUtc>
<CreationDateStartUtc>2026-03-16T13:57:09.4410319+00:00</CreationDateStartUtc>
<Id>c3e75aa7-6ae7-408b-8847-3b07a1d4456f</Id>
<IsTemporary>true</IsTemporary>
<ModifiedDateEndUtc>2026-03-16T13:57:09.4410319+00:00</ModifiedDateEndUtc>
<ModifiedDateStartUtc>2026-03-16T13:57:09.4410319+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>94c00ca6-acdc-42e3-bd17-7792ac2fbe51</d2p1:guid>
<d2p1:guid>19be0e25-0fed-42e0-9681-867f0276e97b</d2p1:guid>
</OrgIds>
<OrganisationId>68ca7691-7305-4ca8-a1ab-f0245e6c89dd</OrganisationId>
<PaymentDateEndUtc>2026-03-16T13:57:09.4410319+00:00</PaymentDateEndUtc>
<PaymentDateStartUtc>2026-03-16T13:57:09.4410319+00:00</PaymentDateStartUtc>
<SearchQuery>sample string 2</SearchQuery>
<SupplierIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>4a69d213-e85a-4b09-a62c-080ec4189fc1</d2p1:guid>
<d2p1:guid>1e4496af-600d-49fe-8197-4ab2767182d1</d2p1:guid>
</SupplierIds>
<TenantId>804495be-36fd-4814-a7b5-a111566865db</TenantId>
<UserId>53b89200-c6a7-4699-b44b-e3837925270d</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.