Transaction

A recent Transaction that may or may not be retro claimed for Loyalty.

  • claimed_by_enrollments
    Type: array integer[]

    For claimed transactions, the unique IDs of Enrollments that processed the claim.

  • claimed_by_member
    Type: object

    For claimed transactions, identifying information for the Sparkfly Member.

    • id
      Type: integer

      Integer numbers.

    • identifier
      Type: string
  • claimed_status
    Type: stringenum

    Whether or not the transaction has been claimed by a Member with one or more Loyalty Enrollments.

    values
    • unclaimed
    • claimed
  • id
    Type: integer

    ID of the transaction record in Sparkfly's records.

Examples
{
  "id": 26,
  "permanent_transaction_id": 26,
  "claimed_status": "claimed",
  "claimed_by_member": {
    "id": 30,
    "identifier": "mem176210833"
  },
  "claimed_by_enrollments": [
    10
  ]
}