Overview
Login
- Access
Onboarding
- Merchant Onboarding
Merchants
- Merchant
- Configuration
- Onboarding
- Explore
Catalog
- Offers
- SKUs
- Categories
- Collections
- Currencies
Orders & Checkout
- Carts
- Cart Items
- Cart Customer
- Cart Discounts
- Cart Shipping
- Cart Pricing
- Cart Payment
- Cart Completion
- Orders
- Order Refunds
- Order Cancellations
- Transfers
Payments
- Payout Accounts
- Distributions
- Transfers
- Transfer Reversals
Events
- Webhooks
- Webhook Events
- Webhook Headers
Apps
- Merchant/App Installs
- Commission Rates
Operations
- Connection
Relay
- Shipping
Ecom Syncs
- Offers
Transfer Reversals
Get Transfer Reversal by Payment Provider Transfer Id
GET
/
payments
/
transfers
/
external
/
{paypro_transfer_id}
/
reversals
Copy
Ask AI
curl --request GET \
--url https://sandbox-api.violet.io/v1/payments/transfers/external/{paypro_transfer_id}/reversals \
--header 'X-Violet-App-Id: <x-violet-app-id>' \
--header 'X-Violet-App-Secret: <x-violet-app-secret>' \
--header 'X-Violet-Token: <x-violet-token>'
Copy
Ask AI
[
{
"id": 123,
"object": "<string>",
"transfer": 123,
"status": "PENDING",
"amount": 123,
"currency": "<string>",
"paypro": "STRIPE",
"paypro_data": {},
"errors": [
{
"id": 123,
"error_code": 123,
"error_message": "<string>",
"resolved": true,
"date_resolved": "2023-11-07T05:31:56Z",
"date_created": "2023-11-07T05:31:56Z",
"transfer_reversal_id": 123
}
],
"date_created": "2023-11-07T05:31:56Z",
"date_last_modified": "2023-11-07T05:31:56Z"
}
]
Headers
Path Parameters
Response
default - application/json
default response
The response is of type object[]
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://sandbox-api.violet.io/v1/payments/transfers/external/{paypro_transfer_id}/reversals \
--header 'X-Violet-App-Id: <x-violet-app-id>' \
--header 'X-Violet-App-Secret: <x-violet-app-secret>' \
--header 'X-Violet-Token: <x-violet-token>'
Copy
Ask AI
[
{
"id": 123,
"object": "<string>",
"transfer": 123,
"status": "PENDING",
"amount": 123,
"currency": "<string>",
"paypro": "STRIPE",
"paypro_data": {},
"errors": [
{
"id": 123,
"error_code": 123,
"error_message": "<string>",
"resolved": true,
"date_resolved": "2023-11-07T05:31:56Z",
"date_created": "2023-11-07T05:31:56Z",
"transfer_reversal_id": 123
}
],
"date_created": "2023-11-07T05:31:56Z",
"date_last_modified": "2023-11-07T05:31:56Z"
}
]
Assistant
Responses are generated using AI and may contain mistakes.