List plans
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/subscriptions/plan \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/subscriptions/plan"
payload = {}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://sandbox-platform.jupico.com/v1/query/subscriptions/plan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/subscriptions/plan';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": [
{
"_id": "<string>",
"facId": "<string>",
"spProductId": "<string>",
"subMerchantId": "<string>",
"planId": "<string>",
"hostedSession": {
"hostedSessionId": "<string>",
"url": "<string>"
},
"name": "<string>",
"description": "<string>",
"schedules": [
{
"scheduleId": "<string>",
"order": 123,
"label": "<string>",
"invoiceDescription": "<string>",
"frequency": "<string>",
"cyclesQty": 123,
"executionDays": [
123
],
"unit": "<string>",
"discount": {
"percentage": 123
},
"pricingModel": {
"type": "<string>",
"free": {
"daysQty": 123
},
"flat": {
"price": 123
},
"flatTiered": {
"tiers": [
{
"tierId": "<string>",
"name": "<string>",
"description": "<string>",
"price": 123,
"featuresSettings": {
"label": "<string>",
"features": [
{
"name": "<string>",
"description": "<string>"
}
]
}
}
]
},
"perModule": {
"modules": [
{
"moduleId": "<string>",
"name": "<string>",
"description": "<string>",
"price": 123
}
]
},
"perUsageQuantity": {
"unitPrice": 123
},
"perUsageVolume": {
"steps": [
{
"stepId": "<string>",
"startQty": 123,
"endQty": 123,
"unitPrice": 123
}
]
},
"perUsageTiered": {
"tiers": [
{
"tierId": "<string>",
"name": "<string>",
"description": "<string>",
"unitPrice": 123,
"quantitySettings": {
"tiers": [
123
]
}
}
]
}
}
}
],
"status": "<string>",
"subscribersQuantity": 123,
"subMerchantDbaName": "<string>"
}
]
}Query
List plans
Returns subscription plans with their schedules and pricing configuration.
POST
https://sandbox-platform.jupico.com
/
v1
/
query
/
subscriptions
/
plan
List plans
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/subscriptions/plan \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/subscriptions/plan"
payload = {}
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://sandbox-platform.jupico.com/v1/query/subscriptions/plan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/subscriptions/plan';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": [
{
"_id": "<string>",
"facId": "<string>",
"spProductId": "<string>",
"subMerchantId": "<string>",
"planId": "<string>",
"hostedSession": {
"hostedSessionId": "<string>",
"url": "<string>"
},
"name": "<string>",
"description": "<string>",
"schedules": [
{
"scheduleId": "<string>",
"order": 123,
"label": "<string>",
"invoiceDescription": "<string>",
"frequency": "<string>",
"cyclesQty": 123,
"executionDays": [
123
],
"unit": "<string>",
"discount": {
"percentage": 123
},
"pricingModel": {
"type": "<string>",
"free": {
"daysQty": 123
},
"flat": {
"price": 123
},
"flatTiered": {
"tiers": [
{
"tierId": "<string>",
"name": "<string>",
"description": "<string>",
"price": 123,
"featuresSettings": {
"label": "<string>",
"features": [
{
"name": "<string>",
"description": "<string>"
}
]
}
}
]
},
"perModule": {
"modules": [
{
"moduleId": "<string>",
"name": "<string>",
"description": "<string>",
"price": 123
}
]
},
"perUsageQuantity": {
"unitPrice": 123
},
"perUsageVolume": {
"steps": [
{
"stepId": "<string>",
"startQty": 123,
"endQty": 123,
"unitPrice": 123
}
]
},
"perUsageTiered": {
"tiers": [
{
"tierId": "<string>",
"name": "<string>",
"description": "<string>",
"unitPrice": 123,
"quantitySettings": {
"tiers": [
123
]
}
}
]
}
}
}
],
"status": "<string>",
"subscribersQuantity": 123,
"subMerchantDbaName": "<string>"
}
]
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
The body is of type object.
Response
200 - application/json
Find Plans
Last modified on July 14, 2026
Was this page helpful?
⌘I

