I've been tasked with connecting our Klipfolio dashboard to our Order fulfilment system to display metrics related to our progress. However, the API has some limitations, and I need to effectively do the following:
SOAP API connection 1: Extracts a list of orders by status (https://orderfulfilment.com/api/orders.asmx/ListByStatus?status=unfulfilled)
> This will return back a list of order numbers with the status of "unfulfilled"
SOAP API connection 2: Extract details of the orders from the list of orders extract in API connection 1 (https://orderfulfilment.com/api/orders.asmx/RetrieveOrders?id={order list array})
> This will return back the details of all orders with the status of "unfulfilled"
How do I define the array of order numbers in the URL for the API connection 2 based on the results of the first call?