# Queries / Receipts

# Receipts

**Query**
## receipt — Returns [Receipt](/documentation/Objects/Receipts#Receipt)

**Scopes required:** modify_receipts

| Arguments | Type | Description |
| --- | --- | --- |
| id | [ID!](/documentation/Types/UUID#UUID) | The ID of the receipt to retrieve |

**Example Query**

```graphql
query GetReceipt($id: ID!) {
    receipt(id: $id) {
        id,
        name,
        type,
        components,
        receiptWidth
    }
}

# Example variables
{
    "id": "<ID>"
}
```

**Query**
## receipts — Returns [[Receipt]](/documentation/Objects/Receipts#Receipt)

**Scopes required:** modify_receipts

| Arguments | Type | Description |
| --- | --- | --- |
| type | [ReceiptTypeEnum](/documentation/Enums/Receipt-Type-Enum#ReceiptTypeEnum) | The type of receipts to retrieve |

**Example Query**

```graphql
query GetReceipts($type: ReceiptTypeEnum) {
    receipts(type: $type) {
        id,
        name,
        type,
        components,
        receiptWidth
    }
}

# Example variables
{
    "type": "NORMAL"
}
```