Skip to main content
POST
/
billing
/
products
Create Product
curl --request POST \
  --url https://api.meow.com/v1/billing/products \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "default_price": 5000000,
  "description": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "default_price": "<string>",
  "description": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Body

application/json
name
string
required
Maximum string length: 100
default_price
required

Default price for the product (0.00 to 10,000,000.00)

Required range: 0 <= x <= 10000000
description
string | null
Maximum string length: 400

Response

Successful Response

id
string<uuid>
required

The unique identifier for the product

name
string
required

The name of the product

default_price
string
required

The default price of the product

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
description
string | null

The description of the product