Create Announcement

POST /self/{shopId}/announcements

Path parameters

application/json

Body

Responses

  • 200

    Announcement created

POST /self/{shopId}/announcements
curl \
 -X POST https://dev.sellpass.io/self/{shopId}/announcements \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"title":"string","shortDescription":"string","description":"string","unlisted":true,"private":true,"buttonText":"string","buttonLink":"string"}'
Request example
{
  "title": "string",
  "shortDescription": "string",
  "description": "string",
  "unlisted": true,
  "private": true,
  "buttonText": "string",
  "buttonLink": "string"
}