Extreme API with Python
Table Of Contents
- 1 Preface
- 2 Introduction
- 3 EXOS APIs
- 4 VOSS API
- 5 XMC API
- 6 ExtremeCloud IQ API
- 7 Extreme Campus Controller API
Extreme API with Python
Page | 107
Part no.9036931-00 Rev AA February 2021
from time import sleep
idQuery = '''
{
workflows {
allWorkflows {
id
name
}
}
}
'''
exeMutation = '''
mutation {
workflows {
startWorkflow (input: { id: <id>
variables: {
MyVariable: "<state>"
}
} ) {
status
errorCode
executionId
message
}
}
}
'''
messageQuery = '''
{
workflows {
execution(executionId: <id>) {
variables
}
}
}










