v1

latestOpenAPI 3.0.3Moneris2026-07-2454487645.8 KB
Merchant Onboarding

List merchant supplies

Get merchant supplies by merchant ID

get/onboarding/merchants/{merchant-id}/supplies

Response

Successful response corresponding to the provided payload

selfstring uri-reference nullable

Pagination link pointing to the current page.

firststring uri-reference nullable

Pagination link pointing to the first page.

laststring uri-reference nullable

Pagination link pointing to the last page.

nextstring uri-reference nullable

Pagination link pointing to the next page.

previousstring uri-reference nullable

Pagination link pointing to the previous page.

Example response

{
  "data": [
    {
      "unitPrice": {
        "amount": 16000,
        "currency": "CAD"
      },
      "supplies": [
        {
          "supplyName": "2-PLY Sales Draft Slips (25)",
          "unitPrice": {
            "amount": 16000,
            "currency": "CAD"
          },
          "quantity": 1
        }
      ]
    }
  ]
}