Skip to main content
POST
/
v1
/
price-lists
Create Price List
curl --request POST \
  --url https://api.wizcommerce.com/v1/price-lists \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "reference_id": "1234567890",
  "name": "Price List Name",
  "description": "Price List Description",
  "status": "active",
  "is_default": false,
  "priority": 1
}'
{
  "data": {
    "id": "0c05a9a7-84ed-46f0-819b-653545730920",
    "reference_id": "PRC-20250101",
    "name": "Price List 1",
    "description": "Price List 1 Description",
    "status": "active",
    "currency": "USD",
    "created_at": "2025-01-01T00:00:00Z",
    "updated_at": "2025-01-01T00:00:00Z"
  }
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Body

application/json

Request

reference_id
string
required
Maximum length: 50
Example:

"1234567890"

name
string
required
Maximum length: 50
Example:

"Price List Name"

description
string
Maximum length: 255
Example:

"Price List Description"

status
enum<string>
Available options:
active,
inactive
Example:

"active"

is_default
boolean
default:false
Example:

false

priority
integer
Example:

1

Response

desc

data
object