Get transactions for all of your clients
GET/kypay/transaction/all_clients
Get transactions for all of your clients
Request
Query Parameters
date string
the date filtering the ledger export, format yyyy-mm-dd (default is current date)
Example: 2024-01-31
page int
Page number (default 1)
Example: 1
itemPerPage int
number of transactions to return per page (default 1000)
Example: 500
Responses
- 200
- 401
- 4XX|5XX
Transaction list
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- MOD1
- MOD2
- BankStatementDetailDto
- ]
Type stringrequired
Possible values: [Purchasing
, Transfer
, Sale
]
Type
Date object nullable
Date of the transaction
oneOf
string
string
Amount integerrequired
Transaction amount in euro cents (10000 = 100Ôé¼)
FlowCredit stringnullable
Possible values: [C
, F
]
Type of transaction ref
Counterparty stringnullable
Identity of counter party
RefTransaction stringrequired
Uniq ref to the transaction
ModalTransac stringrequired
Possible values: [10
, 11
, 20
, 21
, 30
]
Terms of the transaction
Description stringnullable
Transaction description
BankStatementDetail object nullable
oneOf
Id stringrequired
Bank statement identifier
TransferType stringnullable
Possible values: [INSTANT
, STANDARD
]
Transfer type
IbanSender stringnullable
Sender IBAN
IbanBeneficiary stringnullable
Beneficiary IBAN
Name stringnullable
Name of counterparty
Reference stringnullable
Bank reference
[
{
"Type": "Purchasing",
"Date": "2024-11-28T17:04:28.245Z",
"Amount": "10000",
"FlowCredit": "C",
"Counterparty": "4895ae38-a3fa-4ace-bdef-cc31fe5526a0",
"RefTransaction": "o9ikJBpATcWuA375tmcC7tlUBHPAD6CgbJHjkcgX324jeQNsrLg5hjLbTB5M7dTHGyzg4qtqy3Gyiyqh",
"ModalTransac": "10",
"Description": "5.00 Ôé¼ KYPAY Deposit To Mr Peter Investor",
"BankStatementDetail": {}
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
code integer
message string
{
"code": "401",
"message": "JWT Token not found"
}
An error occured
- application/json
- Schema
- Example (from schema)
Schema
success boolean
code integer
internal_code integer
message string
{
"success": "false",
"code": "400",
"internal_code": "3001",
"message": "Incorect data"
}
Loading...