# Get member’s receipt details This endpoint can be used to fetch all receipts uploaded by a member by providing the member's user ID. Note - The member’s receipt information can also be filtered based on query parameters such as receipt_id, receipt_status, and submission_id. Endpoint: GET /receipts/user/{{email_id}} Version: 3.0.0 Security: ## Path parameters: - `email_id` (string) Enter the user ID of the member for whom you want to retrieve all receipt details. Example: "user@domain.com" ## Response 200 fields (application/json): - `submissionId` (string) Displays the autogenerated submission ID when the receipt was uploaded. Example: "4b299b81-203c-11f0-8a74" - `receiptId` (string) Displays the unique receipt ID generated once the receipt was uploaded. Example: "283111745410383" - `uploadDate` (string) Displays the date when the receipt was uploaded, in yyyy-MM-dd HH:mm:ssZ format. Example: "2025-04-23 12:12:57" - `pointsAwarded` (integer) Displays the number of points awarded to the member once the receipt was approved. Example: 10 - `status` (string) Displays the status of the receipt verification process. The status can be 'Pending', 'Points Awarded', or 'Rejected'. When a member uploads a receipt, the status will appear as 'Pending'. Once the receipt is verified and points are awarded, the status will change to 'Points Awarded'. If the receipt is rejected, the status will be 'Rejected'. Example: "Points Awarded" - `processCompletedDate` (string) Displays the date on which the receipt verification was completed and points were awarded to the member, in the yyyy-MM-dd HH:mm:ssZ format. Example: "2025-04-23 12:12:57" - `pages` (integer) Displays the total number of pages on which the member's receipt information appears. Example: 10 - `currentPage` (integer) Displays the current page number on which the member's receipt information appears. Example: 1 ## Response 404 fields