# Check receipt status This endpoint can be used to check the status of a receipt after it has been uploaded. Once the receipt is verified, the member receives the points benefit. Endpoint: GET /receipts/{{submission_id}} Version: 3.0.0 Security: ## Path parameters: - `submission_id` (string) Enter the submission ID of the receipt for which you want to check the status. Example: "4b299b81-203c-11f0-8a74" ## Response 200 fields (application/json): - `submissionId` (string) Displays the submission ID of the receipt for which you want to check the status. Example: "4b299b81-203c-11f0-8a74" - `receiptId` (string) Displays the unique ID of the receipt for which you requested the status. 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" ## Response 404 fields