Skip to main content

Create a variation option

POST 

https://euwest.api.elasticpath.com/pcm/variations/:variationID/options

Create a variation option

Request

Responses

Successfully returns the created variation option.

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/pcm/variations/:variationID/options");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"type\": \"product-variation-option\",\n \"attributes\": {\n \"name\": \"string\",\n \"sort_order\": 0,\n \"description\": \"string\"\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
Auth
Parameters
— pathrequired
Body
{
  "data": {
    "type": "product-variation-option",
    "attributes": {
      "name": "string",
      "sort_order": 0,
      "description": "string"
    }
  }
}
ResponseClear

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