Skip to main content
POST
/
api
/
catalog
/
offers
Create offer
curl --request POST \
  --url https://api.example.com/api/catalog/offers \
  --header 'Content-Type: application/json' \
  --cookie better-auth.session_token= \
  --data '
{
  "title": "<string>",
  "price": 123,
  "currency": "<string>"
}
'
{
  "title": "<string>",
  "price": 123,
  "currency": "<string>"
}

Authorizations

better-auth.session_token
string
cookie
required

Body

application/json
title
string
required
price
number
required
currency
string

Response

201 - application/json

Offer created

title
string
required
price
number
required
currency
string