# Get my statistics

Returns the headline activity totals for the signed-in user - the sort of figures a
volunteer portal shows on a dashboard, such as events attended, shifts worked, hours
contributed and the current reward point balance. Each entry carries a stable `code` to
key off, a display `label` already rendered in the account's own terminology, the `value`
itself, and an `icon` hint the portal uses.
Which totals come back is a per-account choice, so the set of codes is not fixed and an
account that has selected none receives an empty array. Treat `code` as the contract and
ignore any code you do not recognise rather than relying on position. Totals are computed
on read and briefly cached, so a figure can lag a change made moments earlier.

Endpoint: GET /api/v2/me/stats
Version: 2.0.0
Security: default

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `code` (string)

  - `label` (string)

  - `value` (integer)

  - `icon` (string)

