Retrieves fulfillment information for the most recent order generated by a subscription contract. Shows shipping status, tracking numbers, and delivery progress.
Key Features:
Returned Fulfillment Data:
Common Use Cases:
Response Structure: Returns an Order object containing:
Note: This returns data for the MOST RECENT order only. For historical fulfillment data, use order history endpoints.
Parameters:
Authentication: Requires API key authentication via X-API-Key header or api_key parameter
curl --request GET \
--url https://membership-admin.appstle.com/api/external/v2/subscription-contract-details/subscription-fulfillments/{contractId}{
"get__typename": "<string>",
"id": "<string>",
"fulfillmentOrders": {
"get__typename": "<string>",
"nodes": [
{
"get__typename": "<string>"
}
],
"pageInfo": {
"get__typename": "<string>",
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}
}Documentation Index
Fetch the complete documentation index at: https://appstleinc-aeca3e0a.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Subscription contract ID
API Key (Deprecated - Use Header X-API-Key instead)
curl --request GET \
--url https://membership-admin.appstle.com/api/external/v2/subscription-contract-details/subscription-fulfillments/{contractId}{
"get__typename": "<string>",
"id": "<string>",
"fulfillmentOrders": {
"get__typename": "<string>",
"nodes": [
{
"get__typename": "<string>"
}
],
"pageInfo": {
"get__typename": "<string>",
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "<string>",
"endCursor": "<string>"
}
}
}