Skip to main content

Create Stock Transaction on Product

POST 

https://euwest.api.elasticpath.com/v2/inventories/:product_uuid/transactions

Create Stock Transaction on Product

Request

Responses

Success. Stock was successfully modified for product

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/v2/inventories/:product_uuid/transactions");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"product_id\": \"b9ad64bd-fc21-4918-b6ec-768809f4a1e9\",\n \"type\": \"stock-transaction\",\n \"action\": \"allocate\",\n \"quantity\": 5\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
Parameters
— pathrequired
Body
{
  "data": {
    "product_id": "b9ad64bd-fc21-4918-b6ec-768809f4a1e9",
    "type": "stock-transaction",
    "action": "allocate",
    "quantity": 5
  }
}
ResponseClear

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

We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.