v1

latestOpenAPI 3.1.02026-07-245531,0212.1 MB
Service Plans

Get service plan

Returns information about a particular service plan using provided service plan ID.

get/msp/v3/servicePlans/{servicePlanID}

Path parameters

servicePlanIDinteger required

Specify the unique ID of a service plan. Get the ID of a service plan using the 'List all service plans' API.

Headers

Authorizationstring required

Specify the Bearer access token

Response

Ok

idinteger

The ID of the service plan. Example - 1

namestring

The name of the service plan. Example - 'Default service plan'

statusinteger
  • The status of the Service Plan.
    • 0 - Updating
    • 1 - Ready

Example response

{
  "id": 1,
  "name": "Default service plan",
  "status": 1,
  "products": [
    {
      "edition": "elite",
      "productID": 1
    }
  ]
}