» Lists » Views » Subscribers » Get

GET lists/{list_id}/views/{view_id}/subscribers

Retrieves the view's Subscribers

Resource

Method GET
URL http://api.responder.co.il/v1.0/lists/{list_id}/views/{view_id}/subscribers

Parameters

limit
optional

Maximum number of rows to be retrived.
Range between 1 to 500.

Example value: 25
Default value: 500
offset
optional

The position to start the count of "limit" from.
Value must be larger or equal to 0

Example value: 10
Default value: 0
dir
optional

The order of the rows.
For "dir=0" the rows will be in ascending order according to creation date.
For "dir=1" the rows will be in descending order according to creation date.
Value can be either 0 or 1

Example value: 1
Default value: 0
subscriber_id
optional

The identity of specific subscriber.
Value can be either id or email

Example value: 123456 Another example value: israeli@gmail.com
Default value: null
min_join_date
optional

The minimum for subscription date of subscriber.
Value has to be a valid date in YYYY-MM-DD HH:mm format

Example value: 2015-01-01 00:00
Default value: null
max_join_date
optional

The maximum for subscription date of subscriber.
Value has to be a valid date in YYYY-MM-DD HH:mm format

Example value: 2018-06-30 00:00
Default value: null

Example

GET http://api.responder.co.il/v1.0/lists/123456/views/333/subscribers

Response

{
   "VIEW_ID" : 333
   "VIEWS" : [
      {
         "ID" : 654987,
         "DATE" : "2012-04-22"
      },
      {
         "ID" : 654988,
         "DATE" : "2011-03-18"
      }
   ]
}