ClubReady Api

<back to all web services

GetAllUsersRequest

The following routes are available for this service:
GET/club/{StoreId}/Users/allGet all Users for club
import Foundation
import ServiceStack

public class GetAllUsersRequest : GetAllUsersRequestDto, IRestrictedApiRequest
{
    /**
    * Api Key - grants access to resources
    */
    // @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
    public var apiKey:String

    /**
    * Chain ID
    */
    // @ApiMember(DataType="integer", Description="Chain ID", Name="ChainId", ParameterType="query")
    public var chainId:Int?

    /**
    * Store ID
    */
    // @ApiMember(DataType="integer", Description="Store ID", IsRequired=true, Name="StoreId", ParameterType="query")
    public var storeId:Int?

    /**
    * Include deleted users in result? (defaults to false)
    */
    // @ApiMember(DataType="bool", Description="Include deleted users in result? (defaults to false)", Name="IncludeDeleted", ParameterType="query")
    public var includeDeleted:Bool

    /**
    * Max number of records to include in the response.
    */
    // @ApiMember(DataType="int", Description="Max number of records to include in the response.", Name="PageSize", ParameterType="query")
    public var pageSize:Int?

    /**
    * Page number to retrieve.
    */
    // @ApiMember(DataType="int", Description="Page number to retrieve.", Name="PageNumber", ParameterType="query")
    public var pageNumber:Int?

    public var restrictedId:Int?
    public var restrictedResourceType:RestrictedResourceType

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case apiKey
        case chainId
        case storeId
        case includeDeleted
        case pageSize
        case pageNumber
        case restrictedId
        case restrictedResourceType
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        apiKey = try container.decodeIfPresent(String.self, forKey: .apiKey)
        chainId = try container.decodeIfPresent(Int.self, forKey: .chainId)
        storeId = try container.decodeIfPresent(Int.self, forKey: .storeId)
        includeDeleted = try container.decodeIfPresent(Bool.self, forKey: .includeDeleted)
        pageSize = try container.decodeIfPresent(Int.self, forKey: .pageSize)
        pageNumber = try container.decodeIfPresent(Int.self, forKey: .pageNumber)
        restrictedId = try container.decodeIfPresent(Int.self, forKey: .restrictedId)
        restrictedResourceType = try container.decodeIfPresent(RestrictedResourceType.self, forKey: .restrictedResourceType)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if apiKey != nil { try container.encode(apiKey, forKey: .apiKey) }
        if chainId != nil { try container.encode(chainId, forKey: .chainId) }
        if storeId != nil { try container.encode(storeId, forKey: .storeId) }
        if includeDeleted != nil { try container.encode(includeDeleted, forKey: .includeDeleted) }
        if pageSize != nil { try container.encode(pageSize, forKey: .pageSize) }
        if pageNumber != nil { try container.encode(pageNumber, forKey: .pageNumber) }
        if restrictedId != nil { try container.encode(restrictedId, forKey: .restrictedId) }
        if restrictedResourceType != nil { try container.encode(restrictedResourceType, forKey: .restrictedResourceType) }
    }
}

public class GetAllUsersRequestDto : ApiDtoBase
{
    public var includeDeleted:Bool

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case includeDeleted
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        includeDeleted = try container.decodeIfPresent(Bool.self, forKey: .includeDeleted)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if includeDeleted != nil { try container.encode(includeDeleted, forKey: .includeDeleted) }
    }
}

public class ApiDtoBase : Codable
{
    public var apiKey:String
    public var storeId:Int?
    public var chainId:Int?

    required public init(){}
}

public enum RestrictedResourceType : String, Codable
{
    case Store
    case Chain
    case User
    case Undefined
}


Swift GetAllUsersRequest 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 /club/{StoreId}/Users/all HTTP/1.1 
Host: www.clubready.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ArrayOfGetAllUsersResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Core.Api.Models">
  <GetAllUsersResponse>
    <Address>String</Address>
    <Barcode>String</Barcode>
    <CellPhone>String</CellPhone>
    <City>String</City>
    <DateAdded>0001-01-01T00:00:00</DateAdded>
    <DateOfBirth>String</DateOfBirth>
    <Email>String</Email>
    <EmailOptOut>false</EmailOptOut>
    <ExternalUserId>String</ExternalUserId>
    <FirstName>String</FirstName>
    <LastName>String</LastName>
    <Member>false</Member>
    <MemberSinceDate>String</MemberSinceDate>
    <MembershipEndedDate>String</MembershipEndedDate>
    <MembershipExpiresDate>String</MembershipExpiresDate>
    <Phone>String</Phone>
    <Prospect>false</Prospect>
    <ProspectTypeName>String</ProspectTypeName>
    <ReferralTypeId>0</ReferralTypeId>
    <ReferralTypeName>String</ReferralTypeName>
    <SmsOptIn>false</SmsOptIn>
    <SmsOptOut>false</SmsOptOut>
    <State>String</State>
    <StoreId>0</StoreId>
    <UserId>0</UserId>
    <Username>String</Username>
    <Zip>String</Zip>
  </GetAllUsersResponse>
</ArrayOfGetAllUsersResponse>