GET
/
v1
/
price-configurations
curl --request GET \
  --url https://api.hyperline.co/v1/price-configurations \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total": 1,
    "taken": 1,
    "skipped": 0
  },
  "data": [
    {
      "id": "<string>",
      "status": "active",
      "currency": "EUR",
      "country": "FR",
      "plan_id": "<string>",
      "billing_interval": {
        "period": "once"
      },
      "commitment_interval": {
        "period": "all"
      },
      "updated_at": "<string>",
      "archived_at": "<string>",
      "type": "fee",
      "prices": [
        {
          "type": "fee",
          "id": "<string>",
          "amount": 24000
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

take
number | null
default:50
Required range: 0 <= x <= 100
skip
number | null
default:0
Required range: x >= 0
product_id
string
product_id__not
string
product_id__isNull
string
product_id__isNotNull
string
product_id__equals
string
product_id__contains
string
product_id__startsWith
string
product_id__endWith
string
price_book_id
string
price_book_id__not
string
price_book_id__isNull
string
price_book_id__isNotNull
string
price_book_id__equals
string
price_book_id__contains
string
price_book_id__startsWith
string
price_book_id__endWith
string

Response

200 - application/json

The response is of type object.