Create a subscription checkout link
Creates a checkout link for purchasing a subscription plan. The link can be shared with users to complete their subscription purchase.
API key authentication for server-side SDK operations. Used for secure server-to-server communication.
In: header
Plan ID or code for the subscription
Optional client reference ID for tracking
ISO-4217 Currency code (e.g., USD)
Optional region code (2-3 letter country code)
Optional preferred payment method
Optional custom key-value metadata
Empty Object
User information for the subscription checkout
Optional customization for the initial payment amount
Response Body
curl -X POST "https://test-api.stash.gg/sdk/subscriptions/checkout-links" \ -H "Content-Type: application/json" \ -d '{ "plan": "string", "currency": "string", "user": { "id": "string" } }'{
"id": "string",
"url": "string"
}{
"code": 0,
"message": "string",
"details": [
{
"@type": "string",
"property1": null,
"property2": null
}
]
}How is this guide?
Create a subscription change checkout link POST
Creates a checkout link for upgrading an existing subscription to a new plan. Only subscriptions in a `active`, `trialing`, or `cancelled` (still within paid period before expiration) state are eligible for upgrades.
Get plan by ID GET
Retrieves a subscription plan by its unique identifier. Returns full plan details including pricing, billing period, and trial configuration.