Skip to main content
GET
/
points_transactions
/
{id}
Retrieve a points transaction
curl --request GET \
  --url https://api.smile.io/v1/points_transactions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "points_transaction": {
    "id": 825673452,
    "customer_id": 304169228,
    "points_change": 100,
    "description": "Points correction",
    "internal_note": "Due to issue with order #6834",
    "created_at": "2024-12-07T20:15:27.893Z",
    "updated_at": "2024-12-07T20:15:27.893Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of the points transaction to retrieve.

Response

200 - application/json

The points transaction was successfully retrieved.

points_transaction
object