Skip to main content

orderAddresses

Retrieve all addresses associated with a specific order, optionally filtered by address type.

Returns a list of order addresses including billing, delivery, and other address types associated with the order.

Possible errors:

  • ORDER_NOT_FOUND: Order with the specified ID does not exist
  • ORDER_ADDRESS_LIST_ERROR: Failed to retrieve order addresses due to system error
  • VALIDATION_ERROR: Invalid order ID or address type provided
  • FORBIDDEN: Insufficient permissions to access order addresses

AUTH: Role=[order.OWNER,order.EDITOR,order.VIEWER] OR ('user is authenticated')

orderAddresses(
orderId: Int!
type: AddressType
): [OrderAddress!]!

Arguments

orderAddresses.orderId ● Int! non-null scalar

Unique identifier of the order to retrieve addresses for

orderAddresses.type ● AddressType enum

Optional address type filter (e.g., billing, delivery)

Type

OrderAddress object

Address information associated with an order including billing and delivery addresses with complete contact details