Tags
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
Responses
200
OK
application/json
default
Error response
application/json
get
GET /v1/stores/{storeId}/tags HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "411486491630370816",
"store_id": "411486491630370816",
"created_at": "2025-08-01T19:06:20.481Z",
"created_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"name": "text",
"slug": "text",
"description": "text",
"image_url": "text",
"enabled": true,
"updated_at": "2025-08-01T19:06:20.481Z",
"updated_by": {
"type": "anonymous",
"id": "411486491630370816"
}
}
]
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
Body
namestring | nullableOptional
slugstring | nullableOptional
descriptionstring | nullableOptional
enabledboolean | nullableOptional
Responses
200
OK
application/json
default
Error response
application/json
post
POST /v1/stores/{storeId}/tags HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"name": "text",
"slug": "text",
"description": "text",
"enabled": true
}
{
"id": "411486491630370816",
"store_id": "411486491630370816",
"created_at": "2025-08-01T19:06:20.481Z",
"created_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"name": "text",
"slug": "text",
"description": "text",
"image_url": "text",
"enabled": true,
"updated_at": "2025-08-01T19:06:20.481Z",
"updated_by": {
"type": "anonymous",
"id": "411486491630370816"
}
}
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
tagIdstring · flake-idRequiredExample:
411486491630370816
Responses
200
OK
application/json
default
Error response
application/json
get
GET /v1/stores/{storeId}/tags/{tagId} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "411486491630370816",
"store_id": "411486491630370816",
"created_at": "2025-08-01T19:06:20.481Z",
"created_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"name": "text",
"slug": "text",
"description": "text",
"image_url": "text",
"enabled": true,
"updated_at": "2025-08-01T19:06:20.481Z",
"updated_by": {
"type": "anonymous",
"id": "411486491630370816"
}
}
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
tagIdstring · flake-idRequiredExample:
411486491630370816
Responses
204
No Content
default
Error response
application/json
delete
DELETE /v1/stores/{storeId}/tags/{tagId} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No content
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
tagIdstring · flake-idRequiredExample:
411486491630370816
Body
namestring | nullableOptional
slugstring | nullableOptional
descriptionstring | nullableOptional
enabledboolean | nullableOptional
Responses
200
OK
application/json
default
Error response
application/json
patch
PATCH /v1/stores/{storeId}/tags/{tagId} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 65
{
"name": "text",
"slug": "text",
"description": "text",
"enabled": true
}
{
"id": "411486491630370816",
"store_id": "411486491630370816",
"created_at": "2025-08-01T19:06:20.481Z",
"created_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"name": "text",
"slug": "text",
"description": "text",
"image_url": "text",
"enabled": true,
"updated_at": "2025-08-01T19:06:20.481Z",
"updated_by": {
"type": "anonymous",
"id": "411486491630370816"
}
}
Gets a pre-signed upload URL for uploading an image to a tag
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
tagIdstring · flake-idRequiredExample:
411486491630370816
Responses
200
OK
application/json
default
Error response
application/json
get
GET /v1/stores/{storeId}/tags/{tagId}/image-upload-url HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"upload_url": "text"
}
Finishes an image upload for a tag
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
tagIdstring · flake-idRequiredExample:
411486491630370816
Body
image_idstringRequired
The ID of the uploaded image returned by the server.
Responses
204
No Content
default
Error response
application/json
post
POST /v1/stores/{storeId}/tags/{tagId}/image-upload-finish HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"image_id": "text"
}
No content
Deletes an image for a tag
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample:
411486491630370816
tagIdstring · flake-idRequiredExample:
411486491630370816
Responses
204
No Content
default
Error response
application/json
delete
DELETE /v1/stores/{storeId}/tags/{tagId}/image HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No content
Was this helpful?