---
title: "Retrieve Receipt"
method: GET
path: "/v2/company/{company_id}/receipts/{receipt_id}"
tags: ["Receipts"]
---

# Retrieve Receipt

`GET /v2/company/{company_id}/receipts/{receipt_id}`

## Path parameters

- `company_id` integer, required
- `receipt_id` string, uuid, required

## Headers

- `x-api-version` string — An API version
- `x-company-guid` string, uuid

## Response `200`

OK

- object
  - `data` object
    - `uuid` string, uuid
    - `company_id` integer — The id of the company
    - `location_id` integer, required — The id of the location where this receipt was created
    - `pos_id` integer — The ID of the POS system that generated the receipt
    - `receipt_id` string, required — ID available to the client in the POS UI. Be it a GUID, a receipt number, a composite of date and ID and terminal, etc
    - `receipt_date` string, date-time — ISO8601 date and time in UTC when receipt was created
    - `receipt_close_date` string, date-time — ISO8601 date and time in UTC when receipt was closed
    - `net_total` integer, required — Net total of the receipt in cents, pre tax, post-discounts, pre tips
    - `gross_total` integer — Gross total of the receipt in cents
    - `tips` integer — Total tips in cents
    - `total_receipt_discounts` integer — Total receipt discounts in cents
    - `total_item_discounts` integer — Item discounts in cents
    - `external_user_id` string, nullable — ID available to the client in the POS UI. Representing the user responsible for creation of receipt.
    - `revenue_center` string, nullable — ID of the revenue center
    - `receipt_lines` object[] — Receipt line items
      - `id` string, nullable — Internal UUID of the receipt
      - `location_id` integer, required — The id of the location where this receipt was created
      - `external_item_id` string, required — The item ID available to the client
      - `external_category_ids` string[], required — The list of category IDs available to the client
      - `quantity` integer, required — Quantity of this item
      - `price` integer, required — Price in cents
      - `gross_item_price` integer, nullable — The item gross price in cents
      - `net_item_price` integer, nullable — The item net price pre-tax, post-discounts, pre-tips. In cents
      - `item_discount` integer, nullable — The item discount in cents
      - `created_date` string, date-time, nullable — ISO8601 date and time in UTC when receipt was created in 7shifts system
    - `tip_details` object[] — Tip line items
      - `type` 'cc' | 'cash' | 'declared' | 'net' | 'total' | 'gratuity', required — Tip type
      - `value` integer, required — Tip value. In cents
    - `status` 'open' | 'closed' | 'voided' | 'deleted' — Status of the receipt
    - `created_date` string, date-time — ISO8601 date and time in UTC when receipt was created in 7shifts system
    - `modified_date` string, date-time — ISO8601 date and time in UTC when receipt was last updated in 7shifts system

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `404` — Not found
- `422` — Unprocessable Entity
- `500` — Server Error

---

[API](https://skmtc.net/7shifts/apis/7shifts-api.md) · [All operations](https://skmtc.net/7shifts/apis/7shifts-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/7shifts/7shifts-api/revisions/96a02ef888ab/schema)
