List Public Plans
curl --request GET \
--url http://127.0.0.1:3333/v3/plans/public \
--header 'Authorization: Bearer <token>'import requests
url = "http://127.0.0.1:3333/v3/plans/public"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://127.0.0.1:3333/v3/plans/public', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"plans": [
{
"id": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"price": 123,
"prices": {
"brl": 123,
"usd": 123,
"eur": 123,
"gbp": 123
},
"creditsLimit": 123,
"seatsLimit": 123,
"storageLimit": 123,
"color": "<string>",
"badgeLabel": "<string>",
"displayOrder": 123,
"isPublic": true,
"displayName": "<string>",
"description": "<string>",
"ctaLabel": "<string>",
"features": [
"<string>"
],
"comparisonData": {
"usage": {},
"platform": {
"blocks": true,
"templates": true,
"files": true,
"folders": true,
"watermark": true,
"domains": true,
"export": true,
"js_css": true
},
"channels": {
"whatsapp_gateway": true,
"whatsapp_api": true,
"whatsapp_unlimited": true
},
"integrations": {
"webhooks": true,
"sheets": true,
"analytics": true,
"zapier": true,
"pabbly": true,
"make": true,
"emails": true
},
"support": {
"support_bot": true,
"support_email": true,
"support_priority": true,
"support_dedicated": true
}
}
}
]
}{
"error": "<string>"
}Plans
List Public Plans
List public plans catalog.
GET
/
v3
/
plans
/
public
List Public Plans
curl --request GET \
--url http://127.0.0.1:3333/v3/plans/public \
--header 'Authorization: Bearer <token>'import requests
url = "http://127.0.0.1:3333/v3/plans/public"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://127.0.0.1:3333/v3/plans/public', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"plans": [
{
"id": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"price": 123,
"prices": {
"brl": 123,
"usd": 123,
"eur": 123,
"gbp": 123
},
"creditsLimit": 123,
"seatsLimit": 123,
"storageLimit": 123,
"color": "<string>",
"badgeLabel": "<string>",
"displayOrder": 123,
"isPublic": true,
"displayName": "<string>",
"description": "<string>",
"ctaLabel": "<string>",
"features": [
"<string>"
],
"comparisonData": {
"usage": {},
"platform": {
"blocks": true,
"templates": true,
"files": true,
"folders": true,
"watermark": true,
"domains": true,
"export": true,
"js_css": true
},
"channels": {
"whatsapp_gateway": true,
"whatsapp_api": true,
"whatsapp_unlimited": true
},
"integrations": {
"webhooks": true,
"sheets": true,
"analytics": true,
"zapier": true,
"pabbly": true,
"make": true,
"emails": true
},
"support": {
"support_bot": true,
"support_email": true,
"support_priority": true,
"support_dedicated": true
}
}
}
]
}{
"error": "<string>"
}⌘I