curl --request GET \
--url https://api-next.ofauth.com/v2/access/earnings/transactions \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": "<string>",
"type": "<string>",
"createdAt": "<string>",
"amounts": {
"gross": 123,
"net": 123,
"fee": 123,
"vat": 123,
"tax": 123
},
"currency": "<string>",
"description": "<string>",
"status": "<string>",
"payoutPendingDays": 123,
"user": {
"id": 123,
"name": "<string>",
"username": "<string>",
"avatar": "<string>"
}
}
],
"hasMore": true,
"nextMarker": 123
}Get a list of earnings transactions
Permission Required: earnings:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/earnings/transactions \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": "<string>",
"type": "<string>",
"createdAt": "<string>",
"amounts": {
"gross": 123,
"net": 123,
"fee": 123,
"vat": 123,
"tax": 123
},
"currency": "<string>",
"description": "<string>",
"status": "<string>",
"payoutPendingDays": 123,
"user": {
"id": 123,
"name": "<string>",
"username": "<string>",
"avatar": "<string>"
}
}
],
"hasMore": true,
"nextMarker": 123
}Requires a connection via the x-connection-id header.
Start date for transactions
Pagination marker from previous response
Transaction type filter
subscribes, chat_messages, post, stream, tips Tips source filter (when type=tips)
chat, post_all, profile, story, stream Was this page helpful?