BokaMera.API.Host

<back to all web services

NewsletterCustomerQuery

Requires Authentication
Requires any of the roles:bookingsupplier-administrator-write, superadmin, bookingsupplier-administrator-read
The following routes are available for this service:
GET/newsletter/customersGet all customers that are valid for sending newsletters to.Get all customers that are valid for sending newsletters to.
import Foundation
import ServiceStack

// @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
// @ValidateRequest(Validator="IsAuthenticated")
public class NewsletterCustomerQuery : ICompany, Codable
{
    /**
    * The company id, if empty will use the company id for the user you are logged in with.
    */
    // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")
    public var companyId:String?

    /**
    * Search for customer has done minimum number of bookings.
    */
    // @ApiMember(Description="Search for customer has done minimum number of bookings.")
    public var customerMinBookings:Int?

    /**
    * Search for customer has done maximum number of bookings.
    */
    // @ApiMember(Description="Search for customer has done maximum number of bookings.")
    public var customerMaxBookings:Int?

    /**
    * Search for customer has booked any of the service in the list (List contain service id's).
    */
    // @ApiMember(Description="Search for customer has booked any of the service in the list (List contain service id's).")
    public var bookedServiceIds:[Int] = []

    /**
    * Search interval From datetime .
    */
    // @ApiMember(Description="Search interval From datetime .")
    public var from:Date?

    /**
    * Search interval To datetime .
    */
    // @ApiMember(Description="Search interval To datetime .")
    public var to:Date?

    /**
    * The max number of records you want to collect
    */
    // @ApiMember(Description="The max number of records you want to collect")
    public var maxRecords:Int?

    /**
    * If you want to include the full customer information in the response
    */
    // @ApiMember(Description="If you want to include the full customer information in the response")
    public var includeCustomerInformation:Bool

    required public init(){}
}

public class NewsletterCustomerQueryResponse : Codable
{
    public var id:String
    public var customer:NewsletterCustomerInfo

    required public init(){}
}

public class NewsletterCustomerInfo : Codable
{
    public var id:String
    public var firstname:String
    public var lastname:String
    public var email:String
    public var phone:String
    public var facebookUserName:String
    public var imageUrl:Uri

    required public init(){}
}


Swift NewsletterCustomerQuery DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /newsletter/customers HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<NewsletterCustomerQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
  <Customer>
    <Email>String</Email>
    <FacebookUserName>String</FacebookUserName>
    <Firstname>String</Firstname>
    <Id>00000000-0000-0000-0000-000000000000</Id>
    <ImageUrl i:nil="true" />
    <Lastname>String</Lastname>
    <Phone>String</Phone>
  </Customer>
  <Id>00000000-0000-0000-0000-000000000000</Id>
</NewsletterCustomerQueryResponse>