Adyen Transactionservice V4
Adyen Transaction Service is an API for retrieving and managing transaction records on Adyen's platform.
- Base URL:
https://balanceplatform-api-live.adyen.com/btl/api/v4 - Auth:
header:X-API-Key(pass your key via theapiKeyinput)
Operations
get_disputes— GET /disputes — Get a list of raised disputesget_disputes_disputeid_attachments— GET /disputes/{disputeId}/attachments — Get all attachments linked to a raised disputeget_disputes_disputeid_attachments_attachmentid— GET /disputes/{disputeId}/attachments/{attachmentId} — Get an attachmentget_disputes_id— GET /disputes/{id} — Get dispute by IDpost_disputes— POST /disputes — Raise a disputepost_disputes_disputeid_attachments— POST /disputes/{disputeId}/attachments — Add an attachment to a dispute
Inputs
apiKey— your adyen-transactionservice-v4 API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_disputes
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: get_disputes, get_disputes_disputeid_attachments, get_disputes_disputeid_attachments_attachmentid, get_disputes_id, post_disputes, post_disputes_disputeid_attachments |
attachmentId |
string | no | — | Path parameter attachmentId (required by some operations). |
disputeId |
string | no | — | Path parameter disputeId (required by some operations). |
id |
string | no | — | Path parameter id (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |