---
title: "List merchant supplies"
method: GET
path: "/onboarding/merchants/{merchant-id}/supplies"
tags: ["Merchant Onboarding"]
---

# List merchant supplies

`GET /onboarding/merchants/{merchant-id}/supplies`

Get merchant supplies by merchant ID

## Response `200`

Successful response corresponding to the provided payload

- MerchantSupplies — An object containing a list of supplies associated with the merchant.
  - `data` MerchantSupply[] — A list of supply items associated with the resource
    - `deviceName` string, nullable, required — The name of the device.
    - `carriers` string[] — A list of carrier options available for the device.
    - `softwareVendors` string[] — A list of software vendors associated with the device.
    - `cardReaderName` string, nullable — The name of the card reader associated with the device.
    - `pinpadType` string, nullable — The type of pinpad associated with the device.
    - `serviceCode` string, nullable — The service code associated with the device.
    - `unitPrice` object, nullable — Monetary amount. Note: The value must be in cents. Therefore $10.59 must be sent as 1059.
      - `amount` integer, required — Amount
      - `currency` string, iso-4217, required — Provides the three letter currency code according the ISO 4217 standard. For a complete list of currency codes, visit: https://en.wikipedia.org/wiki/ISO_4217
    - `supplyType` string, nullable, required — The type of supply associated with the device.
    - `supplies` Supply[] — A list of supplies associated with the device.
      - `supplyName` string, required — Indicates the name of the good available for fulfillment or distribution.
      - `unitPrice` Money, required — Monetary amount. Note: The value must be in cents. Therefore $10.59 must be sent as 1059.
        - `amount` integer, required — Amount
        - `currency` string, iso-4217, required — Provides the three letter currency code according the ISO 4217 standard. For a complete list of currency codes, visit: https://en.wikipedia.org/wiki/ISO_4217
      - `quantity` integer — Specifies the amount of goods currently available for a particular product.
  - `self` string, uri-reference, nullable — Pagination link pointing to the current page.
  - `first` string, uri-reference, nullable — Pagination link pointing to the first page.
  - `last` string, uri-reference, nullable — Pagination link pointing to the last page.
  - `next` string, uri-reference, nullable — Pagination link pointing to the next page.
  - `previous` string, uri-reference, nullable — Pagination link pointing to the previous page.

## Other responses

- `400` — Bad Request.
- `401` — Not authorized. The user does not have a valid API Key or Access Token.
- `403` — Forbidden. The user does not have permission to access the requested resource.
- `404` — Not Found.
- `429` — Too Many Requests
- `500` — Unexpected error.
- `503` — Service Temporarily Unavailable

---

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