Make a request ยป
MailingListService.GetMailinglistSubscribersPaginated
Return a paginated list of all the subscribers for this Mailinglist See code examples
URL Parameters
Http verb: Get
URI: Full url: http://se.api.anpasia.com/v1/mailinglists/{MailingListId}/subscribers/{PageNumber}/{PageSize}
URL parameters:
MailingListId | String | The MailinglistID |
PageNumber | String | The page in the resultset to return, starts with 1 |
PageSize | String | The size of each page resultset, minimum 1 |
Body parameters
Body parameters
Not used |
Response
Body parameters
returns | A response object which includes the paginated result, status code and a message.
|
Body Example
{ "Code" : 1, "Message" : "OK" , "Result" : { "TotalCount" : 1, "TotalPages" : 1, "Items" : [ { "Created" : "\/Date(1743995649021)\/" , "Email" : "john@apsis.com" , "Id" : 12345, "Name" : "John Svensson" , "Updated" : "\/Date(1743995649021)\/" } ] } } |
< Code >1</ Code > < Message >OK</ Message > < Result > < TotalCount >1</ TotalCount > < TotalPages >1</ TotalPages > < Items > < SubscriberListItem > < Created >2025-04-07T03:14:09.0371908Z</ Created > < Email >john@apsis.com</ Email > < Id >12345</ Id > < Name >John Svensson</ Name > < Updated >2025-04-07T03:14:09.0371908Z</ Updated > </ SubscriberListItem > </ Items > </ Result > </ Response > |
Help
Code examples
curl -i -X GET -H 'Content-type: application/json' -H 'Accept: application/json' -H 'Authorization: basic $api_key_64baseformat' url http: //se.api.anpasia.com/v1/mailinglists/{MailingListId}/subscribers/{PageNumber}/{PageSize} |