ClubReady Api

<back to all web services

GetGuestPassTypesRequest

The following routes are available for this service:
GET/club/guest-pass/typesGuest passes available at location.
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports ClubReady.Web.Api.ClubAccess.Model
Imports ClubReady.Core.Api.Models
Imports ClubReady.Web.Api
Imports ClubReady.Core.ClubAccess.GuestPasses.Dtos

Namespace Global

    Namespace ClubReady.Core.Api.Models

        Public Partial Class ApiDtoBase
            Public Overridable Property ApiKey As String
            Public Overridable Property StoreId As Nullable(Of Integer)
            Public Overridable Property ChainId As Nullable(Of Integer)
        End Class

        Public Partial Class ApiResponseBase
            Public Overridable Property Success As Boolean
            Public Overridable Property Message As String
        End Class

        Public Partial Class GetGuestPassTypesRequestDto
            Inherits ApiDtoBase
        End Class

        Public Partial Class GetGuestPassTypesResponseDto
            Inherits ApiResponseBase
            Public Sub New()
                GuestPassTypes = New List(Of GuestPassTypeDto)
            End Sub

            Public Overridable Property GuestPassTypes As List(Of GuestPassTypeDto)
        End Class
    End Namespace

    Namespace ClubReady.Core.ClubAccess.GuestPasses.Dtos

        Public Partial Class GuestPassTypeDto
            Public Overridable Property GuestPassTypeId As Integer
            Public Overridable Property ChainId As Nullable(Of Integer)
            Public Overridable Property StoreId As Nullable(Of Integer)
            Public Overridable Property PassName As String
            Public Overridable Property DurationDays As Integer
            Public Overridable Property ExpirationEditable As Boolean
            Public Overridable Property MaxDurationDays As Integer
            Public Overridable Property AutoActivateWhenIssued As Boolean
            Public Overridable Property IssueBarcodeWhenActivated As Boolean
            Public Overridable Property TagWhenActivated As String
            Public Overridable Property MaxIssuedCount As Integer
            Public Overridable Property IsDeleted As Boolean
            Public Overridable Property InactiveCount As Integer
            Public Overridable Property ActiveCount As Integer
            Public Overridable Property ExpiredCount As Integer
            Public Overridable Property TotalCount As Integer
        End Class
    End Namespace

    Namespace ClubReady.Web.Api

        Public Enum RestrictedResourceType
            Store
            Chain
            User
            Undefined
        End Enum
    End Namespace

    Namespace ClubReady.Web.Api.ClubAccess.Model

        Public Partial Class GetGuestPassTypesRequest
            Inherits GetGuestPassTypesRequestDto
            Implements IRestrictedApiRequest
            '''<Summary>
            '''Api Key - grants access to resources
            '''</Summary>
            <ApiMember(DataType:="string", Description:="Api Key - grants access to resources", IsRequired:=true, Name:="ApiKey", ParameterType:="query")>
            Public Overridable Property ApiKey As String

            '''<Summary>
            '''Either StoreId or ChainId is required
            '''</Summary>
            <ApiMember(DataType:="integer", Description:="Either StoreId or ChainId is required", Name:="StoreId", ParameterType:="query")>
            Public Overridable Property StoreId As Nullable(Of Integer)

            '''<Summary>
            '''Either StoreId or ChainId is required
            '''</Summary>
            <ApiMember(DataType:="integer", Description:="Either StoreId or ChainId is required", Name:="ChainId", ParameterType:="query")>
            Public Overridable Property ChainId As Nullable(Of Integer)

            Public Overridable Property RestrictedId As Nullable(Of Integer)
            Public Overridable Property RestrictedResourceType As RestrictedResourceType
        End Class

        Public Partial Class GetGuestPassTypesResponse
            Inherits GetGuestPassTypesResponseDto
            Public Sub New()
                GuestPassTypes = New List(Of GuestPassTypeDto)
            End Sub

            Public Overridable Property GuestPassTypes As List(Of GuestPassTypeDto)
        End Class
    End Namespace
End Namespace

VB.NET GetGuestPassTypesRequest 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/guest-pass/types HTTP/1.1 
Host: www.clubready.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<GetGuestPassTypesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Web.Api.ClubAccess.Model">
  <Message xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Core.Api.Models">String</Message>
  <Success xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Core.Api.Models">false</Success>
  <GuestPassTypes xmlns:d2p1="http://schemas.datacontract.org/2004/07/ClubReady.Core.ClubAccess.GuestPasses.Dtos" xmlns="http://schemas.datacontract.org/2004/07/ClubReady.Core.Api.Models">
    <d2p1:GuestPassTypeDto>
      <d2p1:ActiveCount>0</d2p1:ActiveCount>
      <d2p1:AutoActivateWhenIssued>false</d2p1:AutoActivateWhenIssued>
      <d2p1:ChainId>0</d2p1:ChainId>
      <d2p1:DurationDays>0</d2p1:DurationDays>
      <d2p1:ExpirationEditable>false</d2p1:ExpirationEditable>
      <d2p1:ExpiredCount>0</d2p1:ExpiredCount>
      <d2p1:GuestPassTypeId>0</d2p1:GuestPassTypeId>
      <d2p1:InactiveCount>0</d2p1:InactiveCount>
      <d2p1:IsDeleted>false</d2p1:IsDeleted>
      <d2p1:IssueBarcodeWhenActivated>false</d2p1:IssueBarcodeWhenActivated>
      <d2p1:MaxDurationDays>0</d2p1:MaxDurationDays>
      <d2p1:MaxIssuedCount>0</d2p1:MaxIssuedCount>
      <d2p1:PassName>String</d2p1:PassName>
      <d2p1:StoreId>0</d2p1:StoreId>
      <d2p1:TagWhenActivated>String</d2p1:TagWhenActivated>
      <d2p1:TotalCount>0</d2p1:TotalCount>
    </d2p1:GuestPassTypeDto>
  </GuestPassTypes>
</GetGuestPassTypesResponse>