Moshtix Developer Documentation

Moshtix Developer Documentation

  • Docs
  • API Playground
  • Terms Of Use
  • Need Help?

›Getting Started

Getting Started

  • Our API
  • Authentication
  • Queries
  • Mutations
  • Dates
  • Currency
  • Images
  • Errors
  • Webhooks
  • Widgets

Currency

Currency

Currency in our platform is associated with an operating country; currently one currency per operating country.

Each client account is associated with an operating country; currently one operating country per client.

Each event is associated with one client.

Each order is associated with one event.

The following query demonstrates how to get the cost of all tickets for a batch of orders, and the currency associated with each order.

{
  viewer(token: "your-token-here") {
    getOrders {
      items {
        id
        event {
          client {
            operatingCountry {
              currency
            }
          }
        }
        tickets {
          items {
            unitCost
          }
        }
      }
    }
  }
}

← DatesImages →
  • Currency
Copyright © 2025 Moshtix Pty Ltd