List Orders by Partner

List orders that belong to a specific partner. Filters are AND-combined and applied as exact matches except where noted: - `status` — comma-separated list of `OrderStatus` values; matches any of them. - `sellToOrderReference` — exact match on the partner's order reference. - `receivedAtFrom` / `receivedAtTo` — inclusive ISO 8601 bounds. Either bound may be supplied independently. Results are paginated according to the standard pagination conventions; see [Pagination](/pagination) for details. The returned objects are the compact `OrderSummary` shape — to inspect issued wallets, follow up with `getOrder`.

Authentication

x-np-api-keystring
API Key authentication via header

Path parameters

tenantstringRequired

Your Entra Tenant ID. More details.

environmentstringRequired

Your Business Central Environment. More details.

companystringRequired

Your Business Central Company. More details.

partnerIdUUIDRequired

Globally unique identifier of the channel manager partner that originated the order. The partner must exist and be active in the Channel Manager Partner Setup; otherwise the order is rejected.

Headers

x-api-versiondateOptional

Used for API versioning. More details.

Query parameters

statusstringOptional

Filter listOrdersByPartner by one or more status values. Multiple statuses are comma-separated (e.g. Draft,Issued).

sellToOrderReferencestringOptional

The partner’s own reference for the order. Unique per partner; combined with partnerId it identifies the order end-to-end. Maximum 50 characters.

receivedAtFromdatetimeOptional

Inclusive lower bound for filtering listOrdersByPartner by receivedAt. ISO 8601.

receivedAtTodatetimeOptional

Inclusive upper bound for filtering listOrdersByPartner by receivedAt. ISO 8601.

Response

This endpoint returns a list of objects.
orderIdUUID
Globally unique identifier of a channel manager order, assigned by the Channel Manager when the order is accepted.
partnerIdUUID

Globally unique identifier of the channel manager partner that originated the order. The partner must exist and be active in the Channel Manager Partner Setup; otherwise the order is rejected.

sellToOrderReferencestring

The partner’s own reference for the order. Unique per partner; combined with partnerId it identifies the order end-to-end. Maximum 50 characters.

statusenum

Lifecycle state of a channel manager order:

  • Draft — order is held pending payment confirmation. Call confirmOrder to release it.
  • Issued — tickets have been issued and the manifest is available.
  • Cancelled — order has been cancelled (deleteOrder on a non-deletable status).
  • Error — ticket issuance failed. Inspect statusMessage for details. The order can be replaced or deleted.
  • Processing — transient internal state committed while ticket issuance runs.
Allowed values:
receivedAtdatetime
UTC timestamp recorded when the Channel Manager accepted the order. ISO 8601.
sellToEmailstring

Email address of the customer the order is sold to. Stored on the order and on each issued wallet for the partner’s own use; the Channel Manager does not send anything to this address. Maximum 100 characters. Can be overridden per item.

sellToNamestring
Name of the customer the order is sold to. Maximum 100 characters. Can be overridden per item.
sellToLanguagestring

Language code (uppercased) for the customer the order is sold to. Stored on the order and on each issued wallet for the partner’s own use; the Channel Manager does not act on it. Must be a valid Business Central language code. Maximum 10 characters. Can be overridden per item.

paymentReferencestring

Reference to the partner-side payment transaction. May be supplied at order creation, or later via confirmOrder. Required to move an order from Draft to Issued. Maximum 20 characters.

statusMessagestring

Human-readable detail about the current status, set by the system. Populated for Error.

jobIdstring
Background job identifier assigned by the Channel Manager when ticket issuance is queued for an order. Empty until issuance has been scheduled.
manifestUrlstring
URL of the printable wallet manifest, populated once ticket issuance has completed.