# Get Transactions Returns all transactions for a member. Endpoint: GET /transactions/customerId/{customerId} Version: 4.3.0 Security: api_key ## Path parameters: - `customerId` (string, required) Member identifier, depending on configuration one of the following identifers could be in use: * Mobile phone * Unique id (oipId or externalSystemId) ## Response 200 fields (application/json): - `receiptId` (string) Unique id of receipt/transaction Example: "122014" - `receiptDate` (string) Date of purchase Example: "2023-10-03T19:00:53" - `storeId` (string) Id of store Example: "332" - `storeName` (string) Name of store Example: "Our main store" - `grossAmount` (number) Total amount of transaction Example: 979.3 - `vat` (number) Total VAT amount of transaction Example: 195.86 - `netAmount` (number) Totalt amount of transction without VAT Example: 783.44 - `discount` (number) Totalt discount given on transaction - `rows` (array) List of products / line items - `rows.lineNo` (string) Items line number in transaction Example: "1" - `rows.productId` (string) Product id Example: "7049987090935" - `rows.productName` (string) Name of product Example: "Black jacket" - `rows.productGroupLevel1Name` (string) Upper level product category Example: "Clothes" - `rows.productGroupLevel2Name` (string) Second level product category Example: "Jackets" - `rows.quantity` (number) Number of products purchased Example: 1 - `rows.grossAmount` (number) Totalt amount of line Example: 979.3 - `rows.vat` (number) Totalt amount of VAT of line Example: 195.86 - `rows.netAmount` (number) Totalt amount of line without VAT Example: 783.44 - `rows.discount` (number) Totalt amount of discount given on line - `rows.points` (number) TNumber of points earned on this line item. 0 if no points are earned. Requires that earning of bonus points are enabled in Trigg application. Example: 98 - `rows.transactionType` (string) Indicates which type of transaction. PURCHASE or RETURN Example: "PURCHASE" ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 404 fields