# POS transactions Retrieve member POS transactions information including staff member, line items and payments made. Endpoint: GET /members/pos/transactions Version: 1.0 Security: OAuth2 ## Query parameters: - `fromdate` (string) Filter pos transactions by transaction date and time. Example: "2024-08-24T00:00:00" - `offset` (integer) The index of the first result to return. Use with limit to get the next page of search results. - `limit` (integer) The maximum number of results to return. ## Header parameters: - `x-api-key` (string, required) Api key per club provided to you by Clubfit ## Response 200 fields (application/json): - `href` (string) Current API URL Example: "https://api.clubfit.net.au/v1/members/pos/transactions" - `next` (string) Next API URL to retrieve the next page Example: "https://api.clubfit.net.au/v1/member/pos/transactions?limit=500&offset=500" - `data` (array) - `data.PosTransactionId` (number) Example: 1234 - `data.TransactionDate` (string) Example: "2000-01-01T04:02:00" - `data.TransactionType` (string) Example: "Sale" - `data.TotalExTax` (number) POS transaction total excluding TAX Example: 1234 - `data.TotalIncTax` (number) POS transaction total including TAX Example: 1234 - `data.Till` (string) Example: "Reception" - `data.Items` (array) - `data.Items.ItemId` (number) Example: 1234 - `data.Items.ProductId` (number) Example: 1234 - `data.Items.ProductName` (string) Example: "Coke" - `data.Items.Description` (string) Example: "Sale" - `data.Items.PriceExTax` (number) Item price excluding TAX Example: 1234 - `data.Items.PriceIncTax` (number) Item price including TAX Example: 1234 - `data.Items.Quantity` (number) Example: 1 - `data.Items.Tax` (number) Item TAX component Example: 1234 - `data.Items.Discount` (number) Item discount Example: 1234 - `data.Items.CategoryId` (number) Item product category id Example: 1234 - `data.Items.CategoryName` (string) Example: "Item product category name" - `data.Items.SubCategoryId` (number) Item product sub category id Example: 1234 - `data.Items.SubCategoryName` (string) Example: "Item product sub category name" - `data.Items.IsRefunded` (boolean) true if the line item has been refunded - `data.Items.IsVoided` (boolean) true if the line item has been voided