| Method | Parameters | Meaning | Cache Name |
|---|---|---|---|
| getShop | shopId | Retrieve a Shop object from API | ShopCache |
| getUser | userId | Retrieve a User object from API | UserCache |
| getPrintType |
shopId, printTypeId | Retrieve a PrintType object from API | PrintTypeCache |
| getArticlesCount |
shopId | Get the total count of Articles within a Shop | n/a |
| getArticles |
shopId, limit, offset | Retrieve a list of Article objects from API considering pagination |
ListArticlesCache |
| getArticles |
shopId | Retrieve a list of Article objects from API | ListArticlesCache |
| getArticle |
shopId, articleId | Retrieve a single Article object from API | ArticleCache |
| getDesign |
shopId, designId | Retrieve a single Design object from API | DesignCache |
| getAvailableSizes |
productType | Get all Sizes of a ProductType (in default appearance) which are currently in stock. | n/a |
| getAvailableSizes | productType, appearanceId | Get all Sizes of a ProductType in a given appearance which are currently in stock. | n/a |
| getProduct |
productId | Retrieve a single Product object from API | ProductCache |
| getProductType |
productTypeId | Retrieve a single ProductType object from API | ProductTypeCache |