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
WalletTransactionDetail identifier
Responses
- 200
- 401
- 403
- 404
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [sender, receiver]
Possible values: [created, pending, transferred, canceled]
{
"id": 1,
"currency": "CHF",
"amount": "100.00",
"executionDate": "2023-01-01T00:00:00+00:00",
"collateral": false,
"side": "sender",
"senderCompanyName": "Example Sender Company AG",
"receiverCompanyName": "Example Receiver Company AG",
"senderAccount": 1,
"receiverAccount": 2,
"comment": "Example comment",
"contact": 1,
"status": "transferred",
"fromAutomation": false
}
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
{
"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"
}
Not Found -- The requested resource could not be found.
- application/json
- Schema
- Example (from schema)
Schema
A short, human-readable summary of the problem.
A human-readable explanation specific to this occurrence of the problem.
Default value: 400
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
A URI reference that identifies the problem type
{
"title": "string",
"detail": "string",
"status": 400,
"instance": "string",
"type": "string"
}