> ## Documentation Index
> Fetch the complete documentation index at: https://docs.interchange.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Buyer instruction tasks

> Create, read, update, and delete the buyer-instructions rows on your storefront.

Buyer-instructions rows scope discounts, notes, and country filters to a buyer
identity. All requests use the storefront base URL with a bearer token:

```
https://api.interchange.io/api/v2/storefront
```

| Task                                                                        | Method   | Path                       | Purpose                              |
| --------------------------------------------------------------------------- | -------- | -------------------------- | ------------------------------------ |
| [List](/v2/storefront/buyer-instructions/tasks/list-buyer-instructions)     | `GET`    | `/buyer-instructions`      | List every row on the storefront     |
| [Create](/v2/storefront/buyer-instructions/tasks/create-buyer-instructions) | `POST`   | `/buyer-instructions`      | Add a new scoped row                 |
| [Update](/v2/storefront/buyer-instructions/tasks/update-buyer-instructions) | `PATCH`  | `/buyer-instructions/{id}` | Change discount, notes, or countries |
| [Delete](/v2/storefront/buyer-instructions/tasks/delete-buyer-instructions) | `DELETE` | `/buyer-instructions/{id}` | Remove a row by id                   |

## Related

<CardGroup cols={2}>
  <Card title="Buyer instructions overview" href="/v2/storefront/buyer-instructions/overview" icon="user-gear">
    Scope shapes, fields, and resolver behavior.
  </Card>

  <Card title="Storefront tasks" href="/v2/storefront/tasks" icon="list-check">
    Core storefront operations.
  </Card>
</CardGroup>
