# Read a reward point balance

Returns one user's reward point balance: how many points they hold now, and
who they belong to.
The record is the running total only. It does not carry the transactions that
produced it, and there is no history in this response - read the reward point
transactions for that.
The ID in the URL is the balance record's own ID, not the user's. To go from a
user to their balance, list the balances and filter on `user_id`.
`permissions` always reports update and delete as unavailable: a balance is
derived from the transactions recorded against it and is not writable through
the API.

Endpoint: GET /api/v2/reward-point/user/{id}
Version: 2.0.0
Security: default

## Path parameters:

  - `id` (integer, required)
    The ID of the reward point balance record.

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `object` (object)

  - `object.id` (integer)

  - `object.account_id` (integer)

  - `object.user_id` (integer)

  - `object.balance` (integer)

  - `object.created_at` (string)

  - `object.updated_at` (string)

  - `object.deleted_at` (string | null)

  - `nice` (array)

  - `relations` (object)

  - `permissions` (object)

  - `permissions.read` (boolean)

  - `permissions.update` (boolean)

  - `permissions.delete` (boolean)

