Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions Documentation/Api/RestApi.apib
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,58 @@ provided as basic auth password. (The basic auth user name can be any string.)
}


## Members of a subscriber list [/lists/{list}/members]

### Retrieve all members of a subscriber list [GET]

+ Request (application/json)

+ Response 200 (application/json)

+ Body

{
"creation_date" => "2016-07-22T15:01:17+00:00",
"email" => "oliver@example.com",
"confirmed" => true,
"blacklisted" => true,
"bounce_count" => 17,
"unique_id" => "95feb7fe7e06e6c11ca8d0c48cb46e89",
"html_email" => true,
"disabled" => true,
"id" => 1,
},
{
"creation_date" => "2017-07-22T15:12:17+00:00",
"email" => "sam@example.com",
"confirmed" => true,
"blacklisted" => false,
"bounce_count" => 1,
"unique_id" => "95feb7fe7e06e6c11ca8d0c48cb4616d",
"html_email" => false,
"disabled" => false,
"id" => 2,
}

+ Response 403 (application/json)

+ Body

{
"code": 403,
"message": "No valid session key was provided as basic auth password."
}

+ Response 404 (application/json)

+ Body

{
"code": 404,
"message": "There is no list with that ID."
}


# Group Subscribers

Resources related to subscribers.
Expand Down