Skip to main content

Offers

Manage subscription offers and discounts. Requires GHOST_ADMIN_API_KEY.

Tools

ToolDescription
admin_browse_offersList all offers
admin_create_offerCreate a new offer
admin_update_offerUpdate an existing offer

admin_browse_offers

List all offers.

{}

admin_create_offer

Create a new subscription offer.

{
"name": "Summer Sale",
"code": "SUMMER2024",
"display_title": "Summer Special",
"display_description": "Get 20% off for the summer",
"cadence": "month",
"amount": 20,
"type": "percent",
"duration": "repeating",
"duration_in_months": 3,
"tier": { "id": "tier-id-here" }
}

Key parameters

ParameterTypeDescription
namestringInternal offer name
codestringPromo code
display_titlestringPublic-facing title
display_descriptionstringPublic-facing description
cadencestringmonth or year
amountnumberDiscount amount
typestringpercent or fixed
durationstringonce, repeating, or forever
duration_in_monthsnumberDuration for repeating offers
tierobjectAssociated tier { id }

admin_update_offer

Update an existing offer.

{
"id": "6abc1234def5678901234567",
"display_title": "Updated Offer Title",
"code": "NEWSUMMER"
}