ClubReady Api

<back to all web services

ClassCategoriesRequest

The following routes are available for this service:
GET/scheduling/class-categoryRetrieve a list of Class Categories available to a store or chain
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class ClassCategoriesRequest extends ClassCategoryRequestDto 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 String ApiKey = null;

        /**
        * Store Id or Chain Id is required
        */
        @ApiMember(DataType="int", Description="Store Id or Chain Id is required", Name="StoreId", ParameterType="query")
        public Integer StoreId = null;

        /**
        * Store Id or Chain Id is required
        */
        @ApiMember(DataType="integer", Description="Store Id or Chain Id is required", Name="ChainId", ParameterType="query")
        public Integer ChainId = null;

        public Integer RestrictedId = null;
        public RestrictedResourceType RestrictedResourceType = null;
        
        public String getApiKey() { return ApiKey; }
        public ClassCategoriesRequest setApiKey(String value) { this.ApiKey = value; return this; }
        public Integer getStoreId() { return StoreId; }
        public ClassCategoriesRequest setStoreId(Integer value) { this.StoreId = value; return this; }
        public Integer getChainId() { return ChainId; }
        public ClassCategoriesRequest setChainId(Integer value) { this.ChainId = value; return this; }
        public Integer getRestrictedId() { return RestrictedId; }
        public ClassCategoriesRequest setRestrictedId(Integer value) { this.RestrictedId = value; return this; }
        public RestrictedResourceType getRestrictedResourceType() { return RestrictedResourceType; }
        public ClassCategoriesRequest setRestrictedResourceType(RestrictedResourceType value) { this.RestrictedResourceType = value; return this; }
    }

    public static class ClassCategoryRequestDto
    {
        public Integer StoreId = null;
        public Integer ChainId = null;
        
        public Integer getStoreId() { return StoreId; }
        public ClassCategoryRequestDto setStoreId(Integer value) { this.StoreId = value; return this; }
        public Integer getChainId() { return ChainId; }
        public ClassCategoryRequestDto setChainId(Integer value) { this.ChainId = value; return this; }
    }

    public static enum RestrictedResourceType
    {
        Store,
        Chain,
        User,
        Undefined;
    }

}

Java ClassCategoriesRequest 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 /scheduling/class-category HTTP/1.1 
Host: www.clubready.com 
Accept: application/xml