# List purchase offers

> Retrieve a paginated list of purchase offers.

`GET /rest/api/purchase_offers`

Retrieves the collection of Purchase Offer resources.

Returns a paginated collection of purchase offers in the current organization.

## Headers

| Name                         | Type     | Required | Description                                                                                                                                      |
| ---------------------------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `X-Flowkiwi-Organization-Id` | `string` | Yes      | The organization the request acts as. Determines the identity, permissions and ownership applied when reading or modifying data on the instance. |

## Query parameters

| Name               | Type      | Required | Description                  |
| ------------------ | --------- | -------- | ---------------------------- |
| `page`             | `integer` | -        | The collection page number   |
| `itemsPerPage`     | `integer` | -        | The number of items per page |
| `order[createdAt]` | `string`  | -        |                              |
| `order[updatedAt]` | `string`  | -        |                              |

## Response

**200** - Purchase Offer collection

| Property           | Type               | Required | Description |
| ------------------ | ------------------ | -------- | ----------- |
| `hydra:totalItems` | `integer`          | -        |             |
| `hydra:search`     | `object`           | -        |             |
| `hydra:view`       | `object`           | -        |             |
| `hydra:member`     | `Purchase.Offer[]` | Yes      |             |

## Errors

**403** - Access denied. The caller is missing one or more identity permissions required for this operation.

| Property             | Type       | Required | Description                                                                                                                                |
| -------------------- | ---------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `@context`           | `object`   | -        |                                                                                                                                            |
| `@id`                | `string`   | Yes      |                                                                                                                                            |
| `@type`              | `string`   | Yes      |                                                                                                                                            |
| `type`               | `string`   | -        |                                                                                                                                            |
| `title`              | `string`   | -        |                                                                                                                                            |
| `status`             | `integer`  | -        |                                                                                                                                            |
| `detail`             | `string`   | -        |                                                                                                                                            |
| `missingPermissions` | `string[]` | -        | Identity permissions that the caller is missing for this operation. Present only when the 403 is caused by a denied identity:* permission. |

## Examples

### Example request

```bash
curl -X GET 'https://<tenant>.product-management.flowkiwi.net/rest/api/purchase_offers' \
  -H 'Authorization: Bearer {token}' \
  -H 'X-Flowkiwi-Organization-Id: <org_id>' \
  -H 'Accept: application/ld+json'
```

### Example response

```json
{
  "@context": "/contexts/Purchase%20Offer",
  "@id": "/rest/api/purchase_offers",
  "@type": "hydra:Collection",
  "hydra:totalItems": 1,
  "hydra:member": [
    {
      "@context": "/contexts/Purchase%20Offer",
      "@id": "/rest/api/purchase_offers/019af8e1-2b3c-7d4e-9f50-6b7c8d9e0f10",
      "@type": "Purchase Offer",
      "id": "019af8e1-2b3c-7d4e-9f50-6b7c8d9e0f10",
      "status": "/rest/api/statuses/ACTIVE",
      "taxExcludedPrice": {
        "@type": "EmbeddedMoneyResource",
        "amount": "6.50",
        "currency": "EUR"
      },
      "taxExcludedPricePerUnit": {
        "@type": "EmbeddedPricePerUnitResource",
        "amount": "9.29",
        "currency": "EUR",
        "unit": "l",
        "value": 1
      },
      "price": {
        "@type": "EmbeddedMoneyResource",
        "amount": "7.80",
        "currency": "EUR"
      },
      "pricePerUnit": {
        "@type": "EmbeddedPricePerUnitResource",
        "amount": "11.14",
        "currency": "EUR",
        "unit": "l",
        "value": 1
      },
      "discountPrice": {
        "@type": "EmbeddedMoneyResource",
        "amount": "7.20",
        "currency": "EUR"
      },
      "discountPricePerUnit": {
        "@type": "EmbeddedPricePerUnitResource",
        "amount": "10.29",
        "currency": "EUR",
        "unit": "l",
        "value": 1
      },
      "discountTaxExcludedPrice": {
        "@type": "EmbeddedMoneyResource",
        "amount": "6.00",
        "currency": "EUR"
      },
      "discountTaxExcludedPricePerUnit": {
        "@type": "EmbeddedPricePerUnitResource",
        "amount": "8.57",
        "currency": "EUR",
        "unit": "l",
        "value": 1
      },
      "startsAt": "2026-03-01T00:00:00+00:00",
      "endsAt": "2026-03-31T23:59:59+00:00",
      "country": "/rest/api/countries/019af8c2-3d4e-7f50-8a61-2b3c4d5e6f70",
      "tax": "/rest/api/taxes/019af8c3-4e5f-7061-9b72-3c4d5e6f7081",
      "variant": "/rest/api/products/019af93e-420e-79f8-800b-6680f03dce20/variants/019af940-5a6b-7c8d-9e0f-1a2b3c4d5e6f",
      "supplier": "/rest/api/suppliers/019af8c5-6a7b-7c8d-9e0f-4d5e6f708192",
      "createdAt": "2026-01-15T09:30:00+00:00",
      "updatedAt": "2026-02-03T14:45:12+00:00"
    }
  ]
}
```
