get_customer
Retrieve customer details by ID from GoCardless to access payment information, mandates, and subscription data for account management.
Instructions
Get a specific customer by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customer_id | Yes | The GoCardless customer ID (e.g., CU123) |
Input Schema (JSON Schema)
{
"properties": {
"customer_id": {
"description": "The GoCardless customer ID (e.g., CU123)",
"type": "string"
}
},
"required": [
"customer_id"
],
"type": "object"
}