Shops and Collections
Get all collections
Get all collections
GET https://t3-prod-api.tipser.com/v4/collections/
headers:
Authorization: Bearer [token]
Get collection by id
Get collection by id
GET https://t3-prod-api.tipser.com/v3/collections/:collectionId
Try me:
https://t3-prod-api.tipser.com/v3/collections/5981d1ae1cf9481900b310a2
Get shop by name
Get shop by name
GET https://t3-prod-api.tipser.com/v3/shops/byName/:shopName
Try me:
https://t3-prod-api.tipser.com/v3/shops/byName/housed
Get shop collection by name
Get shop collection by name
GET https://t3-prod-api.tipser.com/v3/shops/byName/:shopName/collections/:collectionId
Try me:
https://t3-prod-api.tipser.com/v3/shops/byName/housed/collections/my-new-collection9
Add product(s) to a collection
Add product(s) to a collection
POST https://t3-prod-api.tipser.com/v3/collections/:collectionId/products
headers:
Authorization: Bearer [token]
body:
productIds: ["<productId>","<productId>"]
Delete a collection
Delete a collection
DELETE https://t3-prod-api.tipser.com/v3/collections/
:collectionId
headers:
Authorization: Bearer [token]
Delete item from a collection
Delete item from a collection
DELETE https://t3-prod-api.tipser.com/v3/collections/:collectionId/items/:itemId
headers:
Authorization: Bearer [token]