get_payment
Retrieve specific payment details using the payment ID to access transaction information, status, and related data from the GoCardless payment system.
Instructions
Get a specific payment by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
payment_id | Yes | The GoCardless payment ID (e.g., PM123) |
Input Schema (JSON Schema)
{
"properties": {
"payment_id": {
"description": "The GoCardless payment ID (e.g., PM123)",
"type": "string"
}
},
"required": [
"payment_id"
],
"type": "object"
}