Create a Price Book
POSThttps://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
- 201
- default
A price book with the following attributes.
Unexpected error.
Authorization: Authorization
name: Authorizationtype: httpin: headerscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear