curl --request GET \
--url https://api.hyperline.co/v1/price-configurations \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "<string>",
"price_book_id": "<string>",
"status": "active",
"currency": "EUR",
"country": "FR",
"plan_id": "<string>",
"billing_interval": {
"period": "once"
},
"commitment_interval": {
"period": "all"
},
"updated_at": "2023-12-25",
"archived_at": "2023-12-25",
"type": "fee",
"prices": [
{
"type": "fee",
"amount": 123,
"id": "<string>"
}
]
}
]
}Retrieve existing price configurations.
curl --request GET \
--url https://api.hyperline.co/v1/price-configurations \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "<string>",
"price_book_id": "<string>",
"status": "active",
"currency": "EUR",
"country": "FR",
"plan_id": "<string>",
"billing_interval": {
"period": "once"
},
"commitment_interval": {
"period": "all"
},
"updated_at": "2023-12-25",
"archived_at": "2023-12-25",
"type": "fee",
"prices": [
{
"type": "fee",
"amount": 123,
"id": "<string>"
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
0 <= x <= 100x >= 0Was this page helpful?