Retrieve a collection of PEER (P2P) payments
GET/api/wallet_transaction_details
This API endpoint is intended to retrieve a collection of PEER (P2P) payments, specifically recent P2P payments for an account.
Request
Query Parameters
Default value: 1
The collection page number
Possible values: <= 50
Default value: 30
The number of items per page
Enable or disable pagination
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
The date and time in ISO 8601 format. If only the date portion is provided, the time will default to 00:00:00. Example: "2024-11-21T11:54:39.000Z"
Possible values: [ASC, DESC]
Sort the results by the specified field
Responses
- 200
- 401
- 403
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
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": 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"
}
Forbidden -- Access to the requested resource or action is forbidden.
- application/json
- Schema
- Example (from schema)
Schema
{
"type": "string",
"title": "string",
"detail": "string"
}