For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Orders

Retrieving information of all orders.

It's done by MugglePay payment page. ONLY use this if you want to build an in-house payment without redirecting.


Definition

GET https://api.mugglepay.com/v1/orders/

Query Params

Param
Type
Required
Description

status

Status Type

E.g. PAID. Default all statuses.

limit

integer

numbers of orders per page. Max: 50. Default: 10.

offset

integer

starting item. Default: 0.

Example


curl -X GET \
  'https://api.mugglepay.com/v1/orders?limit=20&offset=10' \
  -H 'token: TOKEN_FROM_ADMIN_PORTAL'

Result Format

200 OK

Last updated