API Tags
Endpoints pour la gestion des tags/étiquettes produits.
SDK: client.app.store.tag
Endpoints
Lister les tags
POST /app/{appId}/store/tag/listRequête
| Champ | Type | Requis | Description |
|---|---|---|---|
apiKey | string | Oui | Clé API |
curl -X POST https://api.applite.ai/app/{appId}/store/tag/list \
-H "Content-Type: application/json" \
-d '{"apiKey": "your_api_key"}'Créer un tag
POST /app/{appId}/store/tag/createRequête
| Champ | Type | Requis | Description |
|---|---|---|---|
apiKey | string | Oui | Clé API |
name | string | Oui | Nom du tag |
curl -X POST https://api.applite.ai/app/{appId}/store/tag/create \
-H "Content-Type: application/json" \
-d '{
"apiKey": "your_api_key",
"name": "eco-friendly"
}'Obtenir un tag
POST /app/{appId}/store/tag/{id}Requête
curl -X POST https://api.applite.ai/app/{appId}/store/tag/{tagId} \
-H "Content-Type: application/json" \
-d '{"apiKey": "your_api_key"}'Mettre à jour un tag
POST /app/{appId}/store/tag/{id}/editRequête
| Champ | Type | Requis | Description |
|---|---|---|---|
apiKey | string | Oui | Clé API |
name | string | Oui | Nouveau nom |
curl -X POST https://api.applite.ai/app/{appId}/store/tag/{tagId}/edit \
-H "Content-Type: application/json" \
-d '{
"apiKey": "your_api_key",
"name": "trending"
}'Supprimer un tag
POST /app/{appId}/store/tag/{id}/deleteRequête
curl -X POST https://api.applite.ai/app/{appId}/store/tag/{tagId}/delete \
-H "Content-Type: application/json" \
-d '{"apiKey": "your_api_key"}'La suppression d’un tag le retire automatiquement de tous les produits associés.
Last updated on