Retrieve a single PEER (P2P) payment
GET/api/wallet_transaction_details/:id
This API endpoint is designed to retrieve detailed information about a specific PEER (P2P) payment. It allows you to access all relevant details of an individual PEER (P2P) payment transaction.
Request
Path Parameters
id stringrequired
WalletTransactionDetail identifier
Responses
- 200
- 401
- 403
- 404
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
id integer
currency string
amount string
executionDate string
collateral boolean
side string
Possible values: [sender, receiver]
senderCompanyName string
receiverCompanyName string
senderAccount integernull
receiverAccount integernull
comment stringnull
contact integer
status string
Possible values: [created, pending, transferred, canceled]
fromAutomation boolean
{
"id": 1,
"currency": "CHF",
"amount": "100.00",
"executionDate": "2023-01-01T00:00:00+00:00",
"collateral": true,
"side": "sender",
"senderCompanyName": "Example Sender Company AG",
"receiverCompanyName": "Example Receiver Company AG",
"senderAccount": 1,
"receiverAccount": 2,
"comment": "Example comment",
"contact": 1,
"status": "transferred",
"fromAutomation": true
}
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Not Found -- The requested resource could not be found.
Loading...