GET
/
v1
/
orders
curl --request GET \
  --url https://third-party.etrnl.app/v1/orders \
  --header 'API-Key: <api-key>'
{
      success: true,
	  err: '',
      orders: [
		{
			id: 17,
			organizationId: 681,
			productId: 91,
			displayName: "John's order",
			creationDate: "2023-09-26T23:19:42.000Z",
			fulfilled: false,
			tagMetadata: { internalOrderId: 123456 },
			shippingLabelImgUrl: "https://example.com/johns-shipping-label.png",
			fulfillmentDate: null
		}
	  ]
    }

Get all orders within an organization


Headers

API-Key
string
required

Your organization’s private API key.

{
      success: true,
	  err: '',
      orders: [
		{
			id: 17,
			organizationId: 681,
			productId: 91,
			displayName: "John's order",
			creationDate: "2023-09-26T23:19:42.000Z",
			fulfilled: false,
			tagMetadata: { internalOrderId: 123456 },
			shippingLabelImgUrl: "https://example.com/johns-shipping-label.png",
			fulfillmentDate: null
		}
	  ]
    }