POST
/
prices
Create a price
curl --request POST \
  --url https://pay.chargily.net/test/api/v2/prices \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123,
  "currency": "<string>",
  "product_id": "<string>",
  "metadata": [
    {}
  ]
}'
{
   "id": "01hhy57e5j3xzce7ama8gtk7m0",
   "entity": "price",
   "livemode": false,
   "amount": 200,
   "currency": "dzd",
   "metadata": null,
   "created_at": 1702892910,
   "updated_at": 1702892910,
   "product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}

Body parameters

amount
integer
required
The amount to be charged.
currency
string
required
A lowercase ISO currency code. Currently supported currencies are: “dzd”.
product_id
string
required
The ID of the Product.
metadata
array
A Set of key-value pairs that can be used to store additional information about the product.

Returns

If the request is successful, it returns a price object.
{
   "id": "01hhy57e5j3xzce7ama8gtk7m0",
   "entity": "price",
   "livemode": false,
   "amount": 200,
   "currency": "dzd",
   "metadata": null,
   "created_at": 1702892910,
   "updated_at": 1702892910,
   "product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}