Skip to main content
POST
/
price_points
List price points
curl --request POST \
  --url https://billing.funnelfox.com/{org_id}/v1/price_points \
  --header 'Content-Type: application/json' \
  --data '
{
  "ident": "<string>",
  "currency_code": "<string>",
  "feature_ident": "<string>"
}
'
{
  "price_points": [
    {
      "ident": "<string>",
      "currency": {
        "code": "<string>",
        "minor_units": 123,
        "title": "<string>",
        "symbol": "<string>"
      },
      "intro_type": "no_intro",
      "features": [
        {
          "ident": "<string>"
        }
      ],
      "lifetime_price": 123,
      "intro_free_trial_period": 123,
      "intro_free_trial_period_duration": "minutes",
      "intro_paid_trial_price": 123,
      "intro_paid_trial_period": 123,
      "intro_paid_trial_period_duration": "minutes",
      "next_price": 123,
      "next_period": 123,
      "next_period_duration": "minutes"
    }
  ]
}
Returns all Price Points for your organization. You can optionally filter results using one or more filter fields in the request body (ident, currency_code, feature_ident). Pass an empty object {} or set fields to null to retrieve all Price Points.

Path Parameters

org_id
string
required

Organization ID

Body

application/json
ident
string | null

Filter by Price Point ident, the unique identifier you assigned when creating the Price Point.

currency_code
string | null

Filter by currency code.

feature_ident
string | null

Filter by feature ident (returns price points that include this feature).

Response

200 - application/json

List of price points

price_points
PricePointOut · object[]
required