Skip to main content

Create a Price Book

POST 

https://euwest.api.elasticpath.com/pcm/pricebooks

Creates a price book. You can add the prices to the price book now or update the price book later.

Request

Responses

A price book with the following attributes.

Authorization: Authorization

name: Authorizationtype: httpin: headerscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/pcm/pricebooks");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <Authorization>");
var content = new StringContent("{\n \"data\": {\n \"attributes\": {\n \"external_ref\": \"an-external-ref\",\n \"description\": \"This is a test price book\",\n \"name\": \"Standard Price Book\"\n },\n \"type\": \"pricebook\"\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
Body required
{
  "data": {
    "attributes": {
      "external_ref": "an-external-ref",
      "description": "This is a test price book",
      "name": "Standard Price Book"
    },
    "type": "pricebook"
  }
}
ResponseClear

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