GET | /club/guest-pass/types | Guest passes available at location. |
---|
export class ApiDtoBase
{
public ApiKey: string;
public StoreId?: number;
public ChainId?: number;
public constructor(init?: Partial<ApiDtoBase>) { (Object as any).assign(this, init); }
}
export class GetGuestPassTypesRequestDto extends ApiDtoBase
{
public constructor(init?: Partial<GetGuestPassTypesRequestDto>) { super(init); (Object as any).assign(this, init); }
}
export enum RestrictedResourceType
{
Store = 'Store',
Chain = 'Chain',
User = 'User',
Undefined = 'Undefined',
}
export class GetGuestPassTypesRequest extends GetGuestPassTypesRequestDto implements IRestrictedApiRequest
{
/**
* Api Key - grants access to resources
*/
// @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
public ApiKey: string;
/**
* Either StoreId or ChainId is required
*/
// @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="StoreId", ParameterType="query")
public StoreId?: number;
/**
* Either StoreId or ChainId is required
*/
// @ApiMember(DataType="integer", Description="Either StoreId or ChainId is required", Name="ChainId", ParameterType="query")
public ChainId?: number;
public RestrictedId?: number;
public RestrictedResourceType: RestrictedResourceType;
public constructor(init?: Partial<GetGuestPassTypesRequest>) { super(init); (Object as any).assign(this, init); }
}
export class ApiResponseBase
{
public Success: boolean;
public Message: string;
public constructor(init?: Partial<ApiResponseBase>) { (Object as any).assign(this, init); }
}
export class GuestPassTypeDto
{
public GuestPassTypeId: number;
public ChainId?: number;
public StoreId?: number;
public PassName: string;
public DurationDays: number;
public ExpirationEditable: boolean;
public MaxDurationDays: number;
public AutoActivateWhenIssued: boolean;
public IssueBarcodeWhenActivated: boolean;
public TagWhenActivated: string;
public MaxIssuedCount: number;
public IsDeleted: boolean;
public InactiveCount: number;
public ActiveCount: number;
public ExpiredCount: number;
public TotalCount: number;
public constructor(init?: Partial<GuestPassTypeDto>) { (Object as any).assign(this, init); }
}
export class GetGuestPassTypesResponseDto extends ApiResponseBase
{
public GuestPassTypes: GuestPassTypeDto[];
public constructor(init?: Partial<GetGuestPassTypesResponseDto>) { super(init); (Object as any).assign(this, init); }
}
export class GetGuestPassTypesResponse extends GetGuestPassTypesResponseDto
{
public GuestPassTypes: GuestPassTypeDto[];
public constructor(init?: Partial<GetGuestPassTypesResponse>) { super(init); (Object as any).assign(this, init); }
}
TypeScript GetGuestPassTypesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=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: 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>