Skip to main content
POST
/
pricebooks
Create Price Book
curl --request POST \
  --url https://api.quote.hapily.com/v1/pricebooks \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required
description
string

Response

Price book created successfully

id
string
required
name
string
required
description
string
createdAt
string<date-time>
updatedAt
string<date-time>