get_subscription
Retrieve subscription details by ID to access payment information, mandate links, and manage recurring billing data through GoCardless payment platform.
Instructions
Get subscription by ID. Returns links.mandate - use get_mandate then get_customer for full details, or use get_subscription_details instead.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subscription_id | Yes | The GoCardless subscription ID (e.g., SB123) |
Input Schema (JSON Schema)
{
"properties": {
"subscription_id": {
"description": "The GoCardless subscription ID (e.g., SB123)",
"type": "string"
}
},
"required": [
"subscription_id"
],
"type": "object"
}