» Lists » Personal Fields » Get

GET lists/{list_id}/personal_fields

Retrieves the list's Personal Fields

Resource

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

Parameters

fields
optional

A comma separated list of field name to be retrived.

Values: id,name,dir,type
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/personal_fields

Response

{
   "LIST_ID" : 123456
   "PERSONAL_FIELDS" : [
      {
         "ID" : 2365,
         "NAME" : "City",
         "DEFAULT_VALUE" : "Tel Aviv",
         "DIR" : "rtl",
         "TYPE" : 0
      },
      {
         "ID" : 2365,
         "NAME" : "Birth Date",
         "DEFAULT_VALUE" : "",
         "DIR" : "ltr",
         "TYPE" : 1
      }
   ]
}