Order Info

Endpoints to manage information for orders.

'/orders/order-completed'

POST

async create(
    @requestBody({
      content: {
        'application/json': {
          schema: {
            type: 'object',
          }
        },
      },
    })
    orderInfo: object,
  ): Promise<void>

Shopify webhook endpoint for Shopify to notify our backend that an order was completed.

'/orders/{id}'

GET

Auth: Yes RBAC: Admin

Gets a specific order by ID.

'/orders'

GET

Auth: Yes RBAC: Admin

Gets all orders.

Last updated