Site Plans
List Site Plans
List Site Plans
GET
https://api.duda.co/api/sites/multiscreen/plans
Get a list of plans that the sites can be changed to within the account.
curl --request GET \
--url https://api.duda.co/api/sites/multiscreen/plans \
--header 'accept: application/json'
Get Site Plan
Get Site Plan
GET
https://api.duda.co/api/sites/multiscreen/{site_name}/plan
Get the current plan assigned to a Site.
Path Parameters
Name
Type
Description
site_name*
string
The unique site name, originally received when creating the site
curl --request GET \
--url https://api.duda.co/api/sites/multiscreen/site_name/plan \
--header 'accept: application/json'
Update Site Plan
Update Site Plan
POST
https://api.duda.co/api/sites/multiscreen/{site_name}/plan/{plan_id}
Set or change the Plan of a Site.
Path Parameters
Name
Type
Description
site_name*
string
The unique site name, originally received when creating the site
plan_id
int32
The plan ID number of the plan you want to apply to this site
{
"planName": "INFO",
"planId": 101
}
curl --request POST \
--url https://api.duda.co/api/sites/multiscreen/site_name/plan/plan_id \
--header 'accept: application/json'
Last updated
Was this helpful?