List of movements
POST
/api/user/operationsReturns all transactions (or moves) made on an Easytransac merchant's account, in descending order.
If you leave Email
or Id
blank, your own transactions are returned.
Request
Body Params application/x-www-form-urlencoded
Limit
number
optional
Number of movements per page (50 by default, 1000 maximum)
Page
number
optional
Requested page (1 by default)
DateFrom
string <YYYY-MM-DD>
optional
Take only transactions since a fixed date
Email
string
optional
Easytransac merchant email address
<= 128 characters
Id
number
optional
Easytransac merchant identifier
Signature
string
required
Signature to verify the integrity of the data sent
Responses
Response(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
Code
integer
optional
Example:
0
Signature
string
optional
Example:
1f51786246a940677afe71f6968972fd46500dd1
Result
array [object {9}]
optional
Id
string
optional
Example:
7gjl12jnczwmpdwb
UserId
string
optional
Example:
12345678
Type
enum<string>
optional
Allowed values:
transactionbanktransferrefundchargebackmanualp2prollingcancellationcreditetc...
Example:
transaction
Date
string
optional
Example:
2020-08-06 10:54:18
Amount
string
optional
Example:
100.00
Fees
string
optional
Example:
-0.50
Balance
string
optional
Le nouveau solde du compte
Example:
99.50
Currency
string
optional
Example:
EUR
PayoutId
string
optional
Si la somme a déjà été virée, l'ID du Payout
lié
Example:
ABCD1234
Example
{
"Code": 0,
"Signature": "1f51786246a940677afe71f6968972fd46500dd1",
"Result": [
{
"Id": "7gjl12jnczwmpdwb",
"UserId": "12345678",
"Type": "transaction",
"Date": "2020-08-06 10:54:18",
"Amount": "100.00",
"Fees": "-0.50",
"Balance": "99.50",
"Currency": "EUR",
"PayoutId": "ABCD1234"
}
]
}
Last modified: a day ago