Skip to main content

List Order Fulfillments

GET 

/commerce/orders/:orderId/fulfillments

List fulfillments for an order for a specified user and credential set

Request

Path Parameters

    orderId stringrequired

    The order ID of the fulfillment

Query Parameters

    credentialId stringrequired

    The ID of the credential.

    pageNumber string

    The page number of the results. Default is 1.

    pageSize int32

    The maximum number of results to show on a page. Default is 50. Maximum is 100.

    carrier string

    A string used to retrieve order fulfillments with a specific carrier.

    carrierContains string

    A string used to retrieve order fulfillments with a carrier containing a specific value.

    carrierNotEquals string

    A string that should not match the carrier of order fulfillments to be retrieved.

    service string

    The type of service used for shipping.

    remoteCreatedAtMin date

    Filter objects created in the third-party application after a specified date.

    remoteCreatedAtMax date

    Filter objects created in the third-party application before a specified date.

    remoteUpdatedAtMin date

    Filter objects last updated in the third-party application after a specified date.

    remoteUpdatedAtMax date

    Filter objects last updated in the third-party application before a specified date.

    createdAtMin date

    Filter objects created after a specified date.

    createdAtMax date

    Filter objects created before a specified date.

    updatedAtMin date

    Filter objects last updated after a specified date.

    updatedAtMax date

    Filter objects last updated before a specified date.

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

Responses

200

Schema

    fulfillments

    object[]

  • Array [

  • remoteCreatedAt string
    remoteUpdatedAt string
    remoteDeleted boolean

    Default value: true

    createdAt string
    updatedAt string
    orderId string
    trackingNumbers array
    trackingUrls array

    lineItems

    object[]

  • Array [

  • quantity integer

    Default value: 0

    productId string
    lineItemId string
    price string
    variantId string
    title string
    sku string
  • ]

  • id string
  • ]

Loading...