Skip to main content
GET
/
users
/
points-transactions
List user points transactions (paginated)
curl --request GET \
  --url https://{subdomain}.nudj.cx/api/v2/analytics/users/points-transactions
{
  "data": [
    {
      "id": "<string>",
      "accountingDirection": "<string>",
      "amount": 123,
      "eventCategory": "<string>",
      "eventSubCategory": "<string>",
      "status": "<string>",
      "createdAt": "<string>",
      "communityId": "<string>",
      "externalTransactionReference": "<string>",
      "eventSourceId": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "skip": 123,
    "limit": 123
  }
}

Query Parameters

userId
string
required
communityId
string
skip
integer
default:0
Required range: x >= 0
limit
integer
default:10
Required range: 1 <= x <= 100

Response

Successful response

data
object[]
required
pagination
object
required
I