For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create tag

Creates a store tag. Names are unique per store (case-insensitive); a duplicate returns 409.

post
Authorizations
AuthorizationstringRequired

All requests require Authorization: Bearer sl_live_<your_api_key>. Generate a key from the Shoplift admin's API Keys settings page.

Body
namestringRequired
Responses
201

Created

application/json
idstring · uuidRequired
post/api/public/v1/tags
POST /api/public/v1/tags HTTP/1.1
Host: app.shoplift.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "name": "text"
}
{
  "id": "123e4567-e89b-12d3-a456-426614174000"
}

Last updated

Was this helpful?