Skip to main content
POST
/
pricebooks
Create Price Book
curl --request POST \
  --url https://api.secure.quotivity.com/v1/pricebooks \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "effectiveStartDate": "<string>",
  "effectiveEndDate": "<string>"
}
'
{
  "id": "<string>",
  "accountId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "bundleOptionId": "<string>",
  "isDeleted": true,
  "effectiveStartDate": "<string>",
  "effectiveEndDate": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required
description
string
required
effectiveStartDate
string

ISO date string (e.g. "2025-01-01"). Requires PRICE_BOOK_EFFECTIVE_DATES feature.

effectiveEndDate
string

ISO date string (e.g. "2025-12-31"). Requires PRICE_BOOK_EFFECTIVE_DATES feature.

Response

Price book created successfully

id
string
required
accountId
string
required
name
string
required
description
string | null
required
bundleOptionId
string | null
isDeleted
boolean
effectiveStartDate
string | null

ISO date string (e.g. "2025-01-01"). Requires PRICE_BOOK_EFFECTIVE_DATES feature.

effectiveEndDate
string | null

ISO date string (e.g. "2025-12-31"). Requires PRICE_BOOK_EFFECTIVE_DATES feature.