celerlinksdevelopers
Events / API reference

Publish an event

Publish your draft after completing its required details.

POST/events/{event}/publish

Authentication

Send your live API key in the Authorization: Bearer header. All requests use https://api.celerlinks.com/api-service.

Request parameters

eventstring · path · required

ID of an event owned by this account.

Examples are illustrative. Catalogue IDs, product codes, prices, and provider-specific fields must come from your current API responses.

cURL request
curl --request POST 'https://api.celerlinks.com/api-service/events/YOUR_EVENT/publish' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{}'
Illustrative response
{
  "success": true,
  "message": "Request completed successfully",
  "data": []
}