Subscribe plans
documentedSubscribe plans for a sub account.
POST /accounts/{accountId}/plansAdminno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.zoom.us/v2/accounts/{{$accountId}}/plans" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"contact": {
"first_name": "{{$first_name}}",
"last_name": "{{$last_name}}",
"email": "{{$email}}",
"phone_number": "{{$phone_number}}",
"address": "{{$address}}",
"apt": "{{$apt}}",
"city": "{{$city}}",
"state": "{{$state}}",
"zip": "{{$zip}}",
"country": "{{$country}}"
},
"plan_base": {
"type": "{{$base_type}}",
"hosts": {{$base_hosts}}
},
"plan_zoom_rooms": {
"type": "{{$zoom_rooms_type}}",
"hosts": {{$zoom_rooms_hosts}}
},
"plan_room_connector": {
"type": "{{$room_connector_type}}",
"hosts": {{$room_connector_hosts}}
},
"plan_large_meeting": [
{
"type": "{{$large_meeting_type}}",
"hosts": {{$large_meeting_hosts}}
}
],
"plan_webinar": [
{
"type": "{{$webinar_type}}",
"hosts": {{$webinar_hosts}}
}
],
"plan_recording": "{{$recording}}",
"plan_audio": {
"tollfree_countries": "{{$plan_audio_tollfree_countries}}",
"premium_countries": "{{$plan_audio_premium_countries}}",
"callout_countries": "{{$plan_audio_callout_countries}}",
"ddi_numbers": {{$plan_audio_ddi_numbers}}
}
}'