GET
/
transactions
/
{reward_transaction_id}
curl --request GET \
  --url https://rewardservice-staging.withbenji.com/transactions/{reward_transaction_id} \
  --header 'Authorization: Bearer <token>'
{
  "reward_transaction": {
    "id": null,
    "partner_id": null,
    "user_id": null,
    "merchant_id": null,
    "campaign_id": null,
    "partnership_id": null,
    "transaction_amount": null,
    "reward_amount": null,
    "external_order_id": null,
    "transaction_type": null,
    "transaction_status": null,
    "external_id": null,
    "external_partner_transaction_id": null,
    "reversed_transaction_id": null,
    "created_date": "2025-05-21T17:17:01.055702"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

reward_transaction_id
integer
required

Unique identifier of the reward transaction to retrieve

Required range: x >= 1

Response

200
application/json

OK

The response is of type object.