| GET | /staff/types | Get Staff types for a location | 
|---|
export class ApiDtoBase implements IApiDtoBase
{
    public ApiKey?: string;
    public StoreId?: number;
    public ChainId?: number;
    public constructor(init?: Partial<ApiDtoBase>) { (Object as any).assign(this, init); }
}
export class StaffTypesRequestDto extends ApiDtoBase
{
    public constructor(init?: Partial<StaffTypesRequestDto>) { super(init); (Object as any).assign(this, init); }
}
export enum RestrictedResourceType
{
    Store = 'Store',
    Chain = 'Chain',
    User = 'User',
    Undefined = 'Undefined',
}
export class StaffTypesRequest extends StaffTypesRequestDto implements IRestrictedApiRequest
{
    /**
    * IP address of the end user
    */
    // @ApiMember(Description="IP address of the end user", Name="X-Forwarded-For", ParameterType="header")
    public XForwardedFor: string;
    /**
    * 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;
    /**
    * StoreId is required
    */
    // @ApiMember(DataType="string", Description="StoreId is required", Name="StoreId", ParameterType="query")
    public StoreId?: number;
    /**
    * StoreId OR ChainId is required
    */
    // @ApiMember(DataType="string", Description="StoreId OR ChainId is required", Name="ChainId", ParameterType="query")
    public ChainId?: number;
    public RestrictedId?: number;
    public RestrictedResourceType: RestrictedResourceType;
    public constructor(init?: Partial<StaffTypesRequest>) { super(init); (Object as any).assign(this, init); }
}
TypeScript StaffTypesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /staff/types HTTP/1.1 Host: www.clubready.com Accept: text/csv