Getting empty Link header in Assigned Fulfillment Orders REST API?

Hi,

I am using /admin/api/2021-10/assigned_fulfillment_orders.json?assignment_status=fulfillment_requested&limit=5 to get list of assigned fulfillment orders, getting all information except Link header is null, although I have tried with couple other REST endpoints returning data with Link header including cursor token. Only happening with Assigned Fulfillment Orders REST API.

I don’t know why it’s not working with specifically to /assigned_fulfillment_orders.json endpoint?

Following is the response I got against the request including Request-ID

array:6 [▼
  "errors" => false
  "response" => GuzzleHttp\Psr7\Response {#1363 ▼
    -reasonPhrase: "OK"
    -statusCode: 200
    -headers: array:31 [▼
      "Date" => array:1 [▶]
      "Content-Type" => array:1 [▶]
      "Transfer-Encoding" => array:1 [▶]
      "Connection" => array:1 [▶]
      "X-Sorting-Hat-PodId" => array:1 [▶]
      "X-Sorting-Hat-ShopId" => array:1 [▶]
      "Vary" => array:1 [▶]
      "Referrer-Policy" => array:1 [▶]
      "X-Frame-Options" => array:1 [▶]
      "X-ShopId" => array:1 [▶]
      "X-ShardId" => array:1 [▶]
      "X-Stats-UserId" => array:1 [▶]
      "X-Stats-ApiClientId" => array:1 [▶]
      "X-Stats-ApiPermissionId" => array:1 [▶]
      "HTTP_X_SHOPIFY_SHOP_API_CALL_LIMIT" => array:1 [▶]
      "X-Shopify-Shop-Api-Call-Limit" => array:1 [▶]
      "X-Shopify-API-Version" => array:1 [▶]
      "Strict-Transport-Security" => array:1 [▶]
      "X-Shopify-Stage" => array:1 [▶]
      "Content-Security-Policy" => array:1 [▶]
      "X-Content-Type-Options" => array:1 [▶]
      "X-Download-Options" => array:1 [▶]
      "X-Permitted-Cross-Domain-Policies" => array:1 [▶]
      "X-XSS-Protection" => array:1 [▶]
      "X-Dc" => array:1 [▶]
      "X-Request-ID" => array:1 [▼
        0 => "831b020a-e43b-4453-b988-55a4865e08ee"
      ]
      "CF-Cache-Status" => array:1 [▶]
      "Expect-CT" => array:1 [▶]
      "Server" => array:1 [▶]
      "CF-RAY" => array:1 [▶]
      "alt-svc" => array:1 [▶]
    ]
    -headerNames: array:31 [▶]
    -protocol: "1.1"
    -stream: GuzzleHttp\Psr7\Stream {#1359 ▶}
  }
  "status" => 200
  "body" => Osiset\BasicShopifyAPI\ResponseAccess {#1371 ▶}
  "link" => null
  "timestamps" => array:1 [▶]
]

Hi @kalimfolio3 ,

assigned_fulfillment_orders was not listed in : https://shopify.dev/docs/api/usage/pagination-rest

That’s why there’s no Link header.

Thx,