Chilkat Online Tools

VB6 / Zoom API / Subscribe account to a plan

Back to Collection Items

' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New ChilkatHttp
Dim success As Long

Dim req As New ChilkatHttpRequest
req.HttpVerb = "POST"
req.Path = "/v2/accounts/:accountId/plans"
req.ContentType = "multipart/form-data"

Dim jsonFormData1 As New ChilkatJsonObject
success = jsonFormData1.UpdateString("type","irure ut")
success = jsonFormData1.UpdateInt("hosts",-25784926)
success = jsonFormData1.UpdateInt("increasing_hosts",-38317701)
req.AddParam "plan_base",jsonFormData1.Emit()

Dim jsonFormData2 As New ChilkatJsonObject
success = jsonFormData2.UpdateString("type","irure ut")
success = jsonFormData2.UpdateInt("hosts",-25784926)
success = jsonFormData2.UpdateInt("increasing_hosts",-38317701)
req.AddParam "contact",jsonFormData2.Emit()

Dim jsonFormData3 As New ChilkatJsonObject
success = jsonFormData3.UpdateString("type","irure ut")
success = jsonFormData3.UpdateInt("hosts",-25784926)
success = jsonFormData3.UpdateInt("increasing_hosts",-38317701)
req.AddParam "plan_zoom_rooms",jsonFormData3.Emit()

Dim jsonFormData4 As New ChilkatJsonObject
success = jsonFormData4.UpdateString("type","irure ut")
success = jsonFormData4.UpdateInt("hosts",-25784926)
success = jsonFormData4.UpdateInt("increasing_hosts",-38317701)
req.AddParam "plan_room_connector",jsonFormData4.Emit()

req.AddParam "plan_large_meeting","{""type"":""irure ut"",""hosts"":-25784926,""increasing_hosts"":-38317701}{""first_name"":""Excepteur sit velit consequat labore"",""last_name"":""eu non"",""email"":""consequ"",""phone_number"":""mollit deserunt eiusmod"",""address"":""dolore enim"",""city"":""do nostrud ut mollit"",""state"":""aute ipsum in aliqua"",""zip"":""nulla reprehenderit esse"",""country"":""aliquip dolore"",""apt"":""esse Excep""}{""type"":""volu"",""hosts"":-14818293}{""type"":""laboris officia"",""hosts"":-78045389}[{""type"":""irure nisi"",""hosts"":-56105234},{""type"":""des"",""hosts"":-30109516}]"

req.AddParam "plan_webinar","{""type"":""irure ut"",""hosts"":-25784926,""increasing_hosts"":-38317701}{""first_name"":""Excepteur sit velit consequat labore"",""last_name"":""eu non"",""email"":""consequ"",""phone_number"":""mollit deserunt eiusmod"",""address"":""dolore enim"",""city"":""do nostrud ut mollit"",""state"":""aute ipsum in aliqua"",""zip"":""nulla reprehenderit esse"",""country"":""aliquip dolore"",""apt"":""esse Excep""}{""type"":""volu"",""hosts"":-14818293}{""type"":""laboris officia"",""hosts"":-78045389}[{""type"":""irure nisi"",""hosts"":-56105234},{""type"":""des"",""hosts"":-30109516}][{""type"":""Ut nisi Excepteur in"",""hosts"":-85140980},{""type"":""cillum aute sunt Lorem"",""hosts"":-70211628}]"

req.AddParam "plan_zoom_events","{""type"":""irure ut"",""hosts"":-25784926,""increasing_hosts"":-38317701}{""first_name"":""Excepteur sit velit consequat labore"",""last_name"":""eu non"",""email"":""consequ"",""phone_number"":""mollit deserunt eiusmod"",""address"":""dolore enim"",""city"":""do nostrud ut mollit"",""state"":""aute ipsum in aliqua"",""zip"":""nulla reprehenderit esse"",""country"":""aliquip dolore"",""apt"":""esse Excep""}{""type"":""volu"",""hosts"":-14818293}{""type"":""laboris officia"",""hosts"":-78045389}[{""type"":""irure nisi"",""hosts"":-56105234},{""type"":""des"",""hosts"":-30109516}][{""type"":""Ut nisi Excepteur in"",""hosts"":-85140980},{""type"":""cillum aute sunt Lorem"",""hosts"":-70211628}][{""type"":""est nulla ipsum dolor consectetur"",""hosts"":77087465},{""type"":""proident ut"",""hosts"":-2792932}]"

req.AddParam "plan_recording","{""type"":""irure ut"",""hosts"":-25784926,""increasing_hosts"":-38317701}{""first_name"":""Excepteur sit velit consequat labore"",""last_name"":""eu non"",""email"":""consequ"",""phone_number"":""mollit deserunt eiusmod"",""address"":""dolore enim"",""city"":""do nostrud ut mollit"",""state"":""aute ipsum in aliqua"",""zip"":""nulla reprehenderit esse"",""country"":""aliquip dolore"",""apt"":""esse Excep""}{""type"":""volu"",""hosts"":-14818293}{""type"":""laboris officia"",""hosts"":-78045389}[{""type"":""irure nisi"",""hosts"":-56105234},{""type"":""des"",""hosts"":-30109516}][{""type"":""Ut nisi Excepteur in"",""hosts"":-85140980},{""type"":""cillum aute sunt Lorem"",""hosts"":-70211628}][{""type"":""est nulla ipsum dolor consectetur"",""hosts"":77087465},{""type"":""proident ut"",""hosts"":-2792932}]exercitation voluptate fugiat"

Dim jsonFormData9 As New ChilkatJsonObject
success = jsonFormData9.UpdateString("type","irure ut")
success = jsonFormData9.UpdateInt("hosts",-25784926)
success = jsonFormData9.UpdateInt("increasing_hosts",-38317701)
req.AddParam "plan_audio",jsonFormData9.Emit()

Dim jsonFormData10 As New ChilkatJsonObject
success = jsonFormData10.UpdateString("type","irure ut")
success = jsonFormData10.UpdateInt("hosts",-25784926)
success = jsonFormData10.UpdateInt("increasing_hosts",-38317701)
req.AddParam "plan_phone",jsonFormData10.Emit()

req.AddHeader "Authorization","Bearer <access_token>"

Dim resp As ChilkatHttpResponse
Set resp = http.SynchronousRequest("api.zoom.us",443,1,req)
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)

Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Debug.Print "Response Body:"
Debug.Print jResp.Emit()

Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Header:"
    Debug.Print resp.Header
    Debug.Print "Failed."

    Exit Sub
End If

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: multipart/form-data"
	--form 'plan_base={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}'
	--form 'contact={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}'
	--form 'plan_zoom_rooms={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}'
	--form 'plan_room_connector={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}'
	--form 'plan_large_meeting={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}[{"type":"irure nisi","hosts":-56105234},{"type":"des","hosts":-30109516}]'
	--form 'plan_webinar={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}[{"type":"irure nisi","hosts":-56105234},{"type":"des","hosts":-30109516}][{"type":"Ut nisi Excepteur in","hosts":-85140980},{"type":"cillum aute sunt Lorem","hosts":-70211628}]'
	--form 'plan_zoom_events={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}[{"type":"irure nisi","hosts":-56105234},{"type":"des","hosts":-30109516}][{"type":"Ut nisi Excepteur in","hosts":-85140980},{"type":"cillum aute sunt Lorem","hosts":-70211628}][{"type":"est nulla ipsum dolor consectetur","hosts":77087465},{"type":"proident ut","hosts":-2792932}]'
	--form 'plan_recording={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}[{"type":"irure nisi","hosts":-56105234},{"type":"des","hosts":-30109516}][{"type":"Ut nisi Excepteur in","hosts":-85140980},{"type":"cillum aute sunt Lorem","hosts":-70211628}][{"type":"est nulla ipsum dolor consectetur","hosts":77087465},{"type":"proident ut","hosts":-2792932}]exercitation voluptate fugiat'
	--form 'plan_audio={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}[{"type":"irure nisi","hosts":-56105234},{"type":"des","hosts":-30109516}][{"type":"Ut nisi Excepteur in","hosts":-85140980},{"type":"cillum aute sunt Lorem","hosts":-70211628}][{"type":"est nulla ipsum dolor consectetur","hosts":77087465},{"type":"proident ut","hosts":-2792932}]exercitation voluptate fugiat{"type":"id","tollfree_countries":"minim","premium_countries":"do","callout_countries":"cillum labore","ddi_numbers":-25280327}'
	--form 'plan_phone={"type":"irure ut","hosts":-25784926,"increasing_hosts":-38317701}{"first_name":"Excepteur sit velit consequat labore","last_name":"eu non","email":"consequ","phone_number":"mollit deserunt eiusmod","address":"dolore enim","city":"do nostrud ut mollit","state":"aute ipsum in aliqua","zip":"nulla reprehenderit esse","country":"aliquip dolore","apt":"esse Excep"}{"type":"volu","hosts":-14818293}{"type":"laboris officia","hosts":-78045389}[{"type":"irure nisi","hosts":-56105234},{"type":"des","hosts":-30109516}][{"type":"Ut nisi Excepteur in","hosts":-85140980},{"type":"cillum aute sunt Lorem","hosts":-70211628}][{"type":"est nulla ipsum dolor consectetur","hosts":77087465},{"type":"proident ut","hosts":-2792932}]exercitation voluptate fugiat{"type":"id","tollfree_countries":"minim","premium_countries":"do","callout_countries":"cillum labore","ddi_numbers":-25280327}{"plan_base":{"type":"irure veniam occaecat amet","callout_countries":"d"},"plan_calling":[{"type":"anim laboris quis","hosts":-31557504},{"type":"commodo sint incididunt elit","hosts":-9893480}],"plan_number":[{"type":"qui laborum","hosts":78392540},{"type":"enim adipisicing Ut ullamco qui","hosts":36515919}]}'
https://api.zoom.us/v2/accounts/:accountId/plans

Postman Collection Item JSON

{
  "name": "Subscribe account to a plan",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "multipart/form-data"
      }
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "plan_base",
          "value": "{\"type\":\"irure ut\",\"hosts\":-25784926,\"increasing_hosts\":-38317701}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "contact",
          "value": "{\"first_name\":\"Excepteur sit velit consequat labore\",\"last_name\":\"eu non\",\"email\":\"consequ\",\"phone_number\":\"mollit deserunt eiusmod\",\"address\":\"dolore enim\",\"city\":\"do nostrud ut mollit\",\"state\":\"aute ipsum in aliqua\",\"zip\":\"nulla reprehenderit esse\",\"country\":\"aliquip dolore\",\"apt\":\"esse Excep\"}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_zoom_rooms",
          "value": "{\"type\":\"volu\",\"hosts\":-14818293}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_room_connector",
          "value": "{\"type\":\"laboris officia\",\"hosts\":-78045389}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_large_meeting",
          "value": "[{\"type\":\"irure nisi\",\"hosts\":-56105234},{\"type\":\"des\",\"hosts\":-30109516}]",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_webinar",
          "value": "[{\"type\":\"Ut nisi Excepteur in\",\"hosts\":-85140980},{\"type\":\"cillum aute sunt Lorem\",\"hosts\":-70211628}]",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_zoom_events",
          "value": "[{\"type\":\"est nulla ipsum dolor consectetur\",\"hosts\":77087465},{\"type\":\"proident ut\",\"hosts\":-2792932}]",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_recording",
          "value": "exercitation voluptate fugiat",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_audio",
          "value": "{\"type\":\"id\",\"tollfree_countries\":\"minim\",\"premium_countries\":\"do\",\"callout_countries\":\"cillum labore\",\"ddi_numbers\":-25280327}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "plan_phone",
          "value": "{\"plan_base\":{\"type\":\"irure veniam occaecat amet\",\"callout_countries\":\"d\"},\"plan_calling\":[{\"type\":\"anim laboris quis\",\"hosts\":-31557504},{\"type\":\"commodo sint incididunt elit\",\"hosts\":-9893480}],\"plan_number\":[{\"type\":\"qui laborum\",\"hosts\":78392540},{\"type\":\"enim adipisicing Ut ullamco qui\",\"hosts\":36515919}]}",
          "description": "undefined",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{baseUrl}}/accounts/:accountId/plans",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "accounts",
        ":accountId",
        "plans"
      ],
      "variable": [
        {
          "key": "accountId",
          "value": "quis officia in reprehenderit",
          "description": "(Required) The account's ID."
        }
      ]
    },
    "description": "Use this API to subscribe a subaccount to a Zoom plan using your Master account. \n\n This API can only be used by Master accounts that pay all billing charges of their associated Pro or higher subaccounts. Zoom only allows [approved partners](https://marketplace.zoom.us/docs/api-reference/master-account-apis) to use Master APIs and manage subaccounts' billing information. Email the partner programs team at [**partner-success@zoom.us**](mailto:partner-success@zoom.us) for more details. \n\n **Note:** To subscribe to an addon plan **after** subscribing to a base plan, you **must** use the [**Subscribe additional plan**](https://marketplace.zoom.us/docs/api-reference/zoom-api/billing/accountplanaddoncreate) API.\n\n**Scopes:** `billing:master`"
  },
  "response": [
    {
      "name": "**Error Code:** `200`<br>\nOne zuora account only can have one active billing subscription.<br>\nCan’t subscribe 25-participants pro plan for this sub-account.<br>\nCan’t subscribe 50-participants pro plan for this sub-account.<br>\nIn order to take advantage",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "plan_base",
              "value": "{\"type\":\"ipsum occaecat sit\",\"hosts\":-80190804,\"increasing_hosts\":78929086}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "contact",
              "value": "{\"first_name\":\"in laboris ut est\",\"last_name\":\"ut Ut occaecat anim voluptate\",\"email\":\"Ut laborum labor\",\"phone_number\":\"do\",\"address\":\"elit reprehenderit\",\"city\":\"elit aliquip ut L\",\"state\":\"eu in occaeca\",\"zip\":\"labore L\",\"country\":\"mollit deserunt proident Lorem ipsum\",\"apt\":\"cons\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_rooms",
              "value": "{\"type\":\"occaecat\",\"hosts\":27049610}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_room_connector",
              "value": "{\"type\":\"sed\",\"hosts\":94418581}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_large_meeting",
              "value": "[{\"type\":\"proident\",\"hosts\":-94142518},{\"type\":\"tempor incididunt ad adipisicing\",\"hosts\":-40305312}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_webinar",
              "value": "[{\"type\":\"occaecat\",\"hosts\":-70222367},{\"type\":\"non do reprehenderit\",\"hosts\":-31415448}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_events",
              "value": "[{\"type\":\"ut nostrud voluptate\",\"hosts\":-70984842},{\"type\":\"cillum dolor anim\",\"hosts\":-78460596}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_recording",
              "value": "non sunt ex ut consequat",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_audio",
              "value": "{\"type\":\"irure fugiat ad\",\"tollfree_countries\":\"exe\",\"premium_countries\":\"ad deserunt in\",\"callout_countries\":\"exercitation pariatur nisi aliqua sed\",\"ddi_numbers\":18484358}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_phone",
              "value": "{\"plan_base\":{\"type\":\"anim incididunt sed sint officia\",\"callout_countries\":\"quis\"},\"plan_calling\":[{\"type\":\"ut Duis sed\",\"hosts\":75670660},{\"type\":\"id\",\"hosts\":37851603}],\"plan_number\":[{\"type\":\"minim velit adipisicing irure\",\"hosts\":-36598101},{\"type\":\"dolore reprehenderit sunt nisi\",\"hosts\":73151976}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/plans",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "plans"
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The account's ID."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{}"
    },
    {
      "name": "**HTTP Status Code:**`201`<br>\nAccount plans updated.",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "plan_base",
              "value": "{\"type\":\"ipsum occaecat sit\",\"hosts\":-80190804,\"increasing_hosts\":78929086}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "contact",
              "value": "{\"first_name\":\"in laboris ut est\",\"last_name\":\"ut Ut occaecat anim voluptate\",\"email\":\"Ut laborum labor\",\"phone_number\":\"do\",\"address\":\"elit reprehenderit\",\"city\":\"elit aliquip ut L\",\"state\":\"eu in occaeca\",\"zip\":\"labore L\",\"country\":\"mollit deserunt proident Lorem ipsum\",\"apt\":\"cons\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_rooms",
              "value": "{\"type\":\"occaecat\",\"hosts\":27049610}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_room_connector",
              "value": "{\"type\":\"sed\",\"hosts\":94418581}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_large_meeting",
              "value": "[{\"type\":\"proident\",\"hosts\":-94142518},{\"type\":\"tempor incididunt ad adipisicing\",\"hosts\":-40305312}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_webinar",
              "value": "[{\"type\":\"occaecat\",\"hosts\":-70222367},{\"type\":\"non do reprehenderit\",\"hosts\":-31415448}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_events",
              "value": "[{\"type\":\"ut nostrud voluptate\",\"hosts\":-70984842},{\"type\":\"cillum dolor anim\",\"hosts\":-78460596}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_recording",
              "value": "non sunt ex ut consequat",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_audio",
              "value": "{\"type\":\"irure fugiat ad\",\"tollfree_countries\":\"exe\",\"premium_countries\":\"ad deserunt in\",\"callout_countries\":\"exercitation pariatur nisi aliqua sed\",\"ddi_numbers\":18484358}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_phone",
              "value": "{\"plan_base\":{\"type\":\"anim incididunt sed sint officia\",\"callout_countries\":\"quis\"},\"plan_calling\":[{\"type\":\"ut Duis sed\",\"hosts\":75670660},{\"type\":\"id\",\"hosts\":37851603}],\"plan_number\":[{\"type\":\"minim velit adipisicing irure\",\"hosts\":-36598101},{\"type\":\"dolore reprehenderit sunt nisi\",\"hosts\":73151976}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/plans",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "plans"
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The account's ID."
            }
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"plan_base\": {\n  \"type\": \"monthly\",\n  \"hosts\": 100,\n  \"partner_sku\": \"PAR3-PRO-BASE-MTH\",\n  \"discount_rate\": 13.53,\n  \"discount_percent\": 0\n },\n \"plan_zoom_rooms\": {\n  \"type\": \"string\",\n  \"hosts\": \"integer\",\n  \"partner_sku\": \"string\",\n  \"discount_rate\": \"double\",\n  \"discount_percent\": \"integer\"\n },\n \"plan_room_connector\": {\n  \"type\": \"string\",\n  \"hosts\": \"integer\",\n  \"partner_sku\": \"string\",\n  \"discount_rate\": \"double\",\n  \"discount_percent\": \"integer\"\n },\n \"plan_large_meeting\": [\n  {\n   \"type\": \"plan_large500_two_years\",\n   \"hosts\": 10,\n   \"partner_sku\": \"PAR1-LMR-500-NH2Y\",\n   \"discount_rate\": 1140,\n   \"discount_percent\": 0\n  }\n ],\n \"plan_webinar\": [\n  {\n   \"type\": \"webinar500_monthly\",\n   \"hosts\": 10,\n   \"partner_sku\": \"PAR1-WEB-500-FL-1M\",\n   \"discount_rate\": 112,\n   \"discount_percent\": 20\n  }\n ],\n \"plan_zoom_events\": [\n  {\n   \"type\": \"zoomevents500_monthly\",\n   \"hosts\": 50,\n   \"partner_sku\": \"PAR1-EVN -500-FL1M\",\n   \"discount_rate\": 99,\n   \"discount_percent\": 0\n  }\n ],\n \"plan_audio\": {\n  \"type\": \"tollfree_payongo\",\n  \"tollfree_countries\": \"US\",\n  \"premium_countries\": \"\",\n  \"callout_countries\": \"\",\n  \"ddi_numbers\": 0,\n  \"partner_sku\": \"PAR-AUD-INCL\",\n  \"discount_rate\": 0,\n  \"discount_percent\": 0\n }\n}"
    },
    {
      "name": "**Error Code**: `300`<br>Account can’t buy this plan.<br>Buy hosts must equal or larger than {minBuyHost}.<br>Buy hosts must equal or smaller than {maxBuyHost}.<br>Buy hosts must equal or smaller than 9999.<br>Active hosts must be equal or larger than buy",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "plan_base",
              "value": "{\"type\":\"ipsum occaecat sit\",\"hosts\":-80190804,\"increasing_hosts\":78929086}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "contact",
              "value": "{\"first_name\":\"in laboris ut est\",\"last_name\":\"ut Ut occaecat anim voluptate\",\"email\":\"Ut laborum labor\",\"phone_number\":\"do\",\"address\":\"elit reprehenderit\",\"city\":\"elit aliquip ut L\",\"state\":\"eu in occaeca\",\"zip\":\"labore L\",\"country\":\"mollit deserunt proident Lorem ipsum\",\"apt\":\"cons\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_rooms",
              "value": "{\"type\":\"occaecat\",\"hosts\":27049610}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_room_connector",
              "value": "{\"type\":\"sed\",\"hosts\":94418581}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_large_meeting",
              "value": "[{\"type\":\"proident\",\"hosts\":-94142518},{\"type\":\"tempor incididunt ad adipisicing\",\"hosts\":-40305312}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_webinar",
              "value": "[{\"type\":\"occaecat\",\"hosts\":-70222367},{\"type\":\"non do reprehenderit\",\"hosts\":-31415448}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_events",
              "value": "[{\"type\":\"ut nostrud voluptate\",\"hosts\":-70984842},{\"type\":\"cillum dolor anim\",\"hosts\":-78460596}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_recording",
              "value": "non sunt ex ut consequat",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_audio",
              "value": "{\"type\":\"irure fugiat ad\",\"tollfree_countries\":\"exe\",\"premium_countries\":\"ad deserunt in\",\"callout_countries\":\"exercitation pariatur nisi aliqua sed\",\"ddi_numbers\":18484358}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_phone",
              "value": "{\"plan_base\":{\"type\":\"anim incididunt sed sint officia\",\"callout_countries\":\"quis\"},\"plan_calling\":[{\"type\":\"ut Duis sed\",\"hosts\":75670660},{\"type\":\"id\",\"hosts\":37851603}],\"plan_number\":[{\"type\":\"minim velit adipisicing irure\",\"hosts\":-36598101},{\"type\":\"dolore reprehenderit sunt nisi\",\"hosts\":73151976}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/plans",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "plans"
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The account's ID."
            }
          ]
        }
      },
      "status": "Multiple Choices",
      "code": 300,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**HTTP Status Code:** `400`<br> **Error Code:** `2100`<br> Invalid parameter: first_name<br>\nInvalid parameter: last_name<br>Invalid parameter: email<br>Invalid parameter: country<br>Invalid parameter: address\nInvalid parameter: city<br>Invalid parameter:",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "plan_base",
              "value": "{\"type\":\"ipsum occaecat sit\",\"hosts\":-80190804,\"increasing_hosts\":78929086}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "contact",
              "value": "{\"first_name\":\"in laboris ut est\",\"last_name\":\"ut Ut occaecat anim voluptate\",\"email\":\"Ut laborum labor\",\"phone_number\":\"do\",\"address\":\"elit reprehenderit\",\"city\":\"elit aliquip ut L\",\"state\":\"eu in occaeca\",\"zip\":\"labore L\",\"country\":\"mollit deserunt proident Lorem ipsum\",\"apt\":\"cons\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_rooms",
              "value": "{\"type\":\"occaecat\",\"hosts\":27049610}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_room_connector",
              "value": "{\"type\":\"sed\",\"hosts\":94418581}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_large_meeting",
              "value": "[{\"type\":\"proident\",\"hosts\":-94142518},{\"type\":\"tempor incididunt ad adipisicing\",\"hosts\":-40305312}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_webinar",
              "value": "[{\"type\":\"occaecat\",\"hosts\":-70222367},{\"type\":\"non do reprehenderit\",\"hosts\":-31415448}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_events",
              "value": "[{\"type\":\"ut nostrud voluptate\",\"hosts\":-70984842},{\"type\":\"cillum dolor anim\",\"hosts\":-78460596}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_recording",
              "value": "non sunt ex ut consequat",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_audio",
              "value": "{\"type\":\"irure fugiat ad\",\"tollfree_countries\":\"exe\",\"premium_countries\":\"ad deserunt in\",\"callout_countries\":\"exercitation pariatur nisi aliqua sed\",\"ddi_numbers\":18484358}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_phone",
              "value": "{\"plan_base\":{\"type\":\"anim incididunt sed sint officia\",\"callout_countries\":\"quis\"},\"plan_calling\":[{\"type\":\"ut Duis sed\",\"hosts\":75670660},{\"type\":\"id\",\"hosts\":37851603}],\"plan_number\":[{\"type\":\"minim velit adipisicing irure\",\"hosts\":-36598101},{\"type\":\"dolore reprehenderit sunt nisi\",\"hosts\":73151976}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/plans",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "plans"
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The account's ID."
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**HTTP Status Code:** `404`<br> **Error Code:** `1001`<br> User does not exist.<br> \n**Error Code:** `2001`<br> Account does not exist: {subAccountId}.<br>\n\n",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "plan_base",
              "value": "{\"type\":\"ipsum occaecat sit\",\"hosts\":-80190804,\"increasing_hosts\":78929086}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "contact",
              "value": "{\"first_name\":\"in laboris ut est\",\"last_name\":\"ut Ut occaecat anim voluptate\",\"email\":\"Ut laborum labor\",\"phone_number\":\"do\",\"address\":\"elit reprehenderit\",\"city\":\"elit aliquip ut L\",\"state\":\"eu in occaeca\",\"zip\":\"labore L\",\"country\":\"mollit deserunt proident Lorem ipsum\",\"apt\":\"cons\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_rooms",
              "value": "{\"type\":\"occaecat\",\"hosts\":27049610}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_room_connector",
              "value": "{\"type\":\"sed\",\"hosts\":94418581}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_large_meeting",
              "value": "[{\"type\":\"proident\",\"hosts\":-94142518},{\"type\":\"tempor incididunt ad adipisicing\",\"hosts\":-40305312}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_webinar",
              "value": "[{\"type\":\"occaecat\",\"hosts\":-70222367},{\"type\":\"non do reprehenderit\",\"hosts\":-31415448}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_zoom_events",
              "value": "[{\"type\":\"ut nostrud voluptate\",\"hosts\":-70984842},{\"type\":\"cillum dolor anim\",\"hosts\":-78460596}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_recording",
              "value": "non sunt ex ut consequat",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_audio",
              "value": "{\"type\":\"irure fugiat ad\",\"tollfree_countries\":\"exe\",\"premium_countries\":\"ad deserunt in\",\"callout_countries\":\"exercitation pariatur nisi aliqua sed\",\"ddi_numbers\":18484358}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "plan_phone",
              "value": "{\"plan_base\":{\"type\":\"anim incididunt sed sint officia\",\"callout_countries\":\"quis\"},\"plan_calling\":[{\"type\":\"ut Duis sed\",\"hosts\":75670660},{\"type\":\"id\",\"hosts\":37851603}],\"plan_number\":[{\"type\":\"minim velit adipisicing irure\",\"hosts\":-36598101},{\"type\":\"dolore reprehenderit sunt nisi\",\"hosts\":73151976}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/accounts/:accountId/plans",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "accounts",
            ":accountId",
            "plans"
          ],
          "variable": [
            {
              "key": "accountId",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The account's ID."
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}