Advancing/Completing a Protocol Step via the API
Solution
def advanceStep( STEP_URI ):
response = False
stXML = API.getResourceByURI( STEP_URI )
rXML = API.createObject( stXML, STEP_URI + "/advance" )
rDOM = parseString( rXML )
nodes = rDOM.getElementsByTagName( "configuration" )
if len( nodes ) > 0:
response = True
return responseAssumptions and Notes
Last updated
Was this helpful?