cURL
curl --request PUT \ --url https://partner-api.aasaan.shop/api/v1/partner-integrations/stores/{storeId}/tags \ --header 'Content-Type: application/json' \ --data '[ { "id": "vegan-id-1", "name": "vegan", "imageUrl": "https://images.aasaan.shop/stores/logo/logo_1684500490812.png" } ]'
{ "tags": [ { "id": "vegan-tag-id-1", "name": "vegan", "imageUrl": "vegan" } ], "errors": [ "Tag with TagId - tag-id-1 is missing name" ] }
Create or update multiple tag
Store ID for this resource request
ID of the Tag that needs to be put
"vegan-id-1"
Name to be used for this tag
"vegan"
Image that represents this tag
"https://images.aasaan.shop/stores/logo/logo_1684500490812.png"
Tags created or update in an array and an array with errors for those tags which couldn't be updated.
Show child attributes