get_method_info
Retrieve detailed parameter requirements and usage examples for BTCPayServer API methods to ensure proper integration and avoid implementation errors.
Instructions
Get detailed parameter requirements and examples for a specific service method.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
methodName | Yes | Method name (e.g., "create", "get", "list", "delete") | |
serviceName | Yes | Service name (e.g., "payment-requests", "invoices", "lightning") |
Input Schema (JSON Schema)
{
"properties": {
"methodName": {
"description": "Method name (e.g., \"create\", \"get\", \"list\", \"delete\")",
"type": "string"
},
"serviceName": {
"description": "Service name (e.g., \"payment-requests\", \"invoices\", \"lightning\")",
"type": "string"
}
},
"required": [
"serviceName",
"methodName"
],
"type": "object"
}