paddle_list_adjustments
Pack: paddle · Endpoint: https://gateway.pipeworx.io/paddle/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/paddle_list_adjustments for the schema, then POST the same URL with its arguments for the data.
Return bounded Paddle adjustments with refund, credit, or chargeback action, status, reason, transaction, customer, currency, and totals. Answers which revenue was refunded, credited, disputed, or reversed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
customer_id | string | no | Paddle customer ID beginning ctm_ |
transaction_id | string | no | Paddle transaction ID beginning txn_ |
status | string | no |
Example call
Arguments
{
"_apiKey": "pdl_sdbx_apikey_your-key",
"_environment": "sandbox",
"status": "approved",
"per_page": 20
}
curl
curl -X POST https://gateway.pipeworx.io/paddle/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"paddle_list_adjustments","arguments":{"_apiKey":"pdl_sdbx_apikey_your-key","_environment":"sandbox","status":"approved","per_page":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('paddle_list_adjustments', {
"_apiKey": "pdl_sdbx_apikey_your-key",
"_environment": "sandbox",
"status": "approved",
"per_page": 20
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"paddle": {
"url": "https://gateway.pipeworx.io/paddle/mcp"
}
}
}
See Getting Started for client-specific install steps.