Skip to main content

Get Stock for Multiple Products

POST 

https://euwest.api.elasticpath.com/v2/inventories/multiple

Returns stock for all products matching the supplied unique identifiers.

Request

Responses

Success. Multiple products and their stock values are returned.

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/v2/inventories/multiple");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": [\n {\n \"type\": \"stock\",\n \"id\": \"3c78777a-cf09-4b2d-be91-a73acbf9166f\"\n }\n ]\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com/v2
Auth
Body
{
  "data": [
    {
      "type": "stock",
      "id": "3c78777a-cf09-4b2d-be91-a73acbf9166f"
    }
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!