NewsletterAcceptance API

Field descriptions

Field Type Description
id integer The uniq identifier of the newsletter acceptance
email string Email of the user
firstname string Firstname of the user
lastname string Lastname of the user
created_at datetime Signup date

List users

List the NewsletterAcceptances

GET /event_makers/:event_maker_id/newsletter_acceptances

Response

Status: 200 OK
[
  {
    "id": 12345678,
    "email": "do_not_reply@place2book.com",
    "firstname": "John",
    "lastname": "Doe"
  }
]