Points

List points transactions

GET/v1/points/transactions

Lists a player's points transactions, most recent first, what actually moved the balance, and what caused each movement.

AuthorizationBearer <token>

Paste a project API key (no 'Bearer ' prefix). Create one in the dashboard under API keys.

In: header

Query Parameters

PlayerId?string

Your own id for the player.

Take?integer

The most transactions to return, newest first. Omit to return the player's whole history, which grows without bound.

Formatint32

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/points/transactions"
[  {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "type": "Grant",    "amount": 0,    "reason": null,    "sourceType": null,    "sourceId": null,    "occurredAtUtc": "2019-08-24T14:15:22Z"  }]