Automation Orchestrator Gateway API

Automation Orchestrator Gateway API

The Automation Orchestrator Gateway API provides a gateway to vRO instances for services that are running on vRealize Automation.

Example:

  1. $orderby - returns a result with the rows being sorted by the values of provided attribute.

    /vro/workflows?$orderby=name%20desc

  2. $top, $skip - $top returns the requested number of resources. Used with $skip, the client can skip a given number of resources.

    /vro/workflows?$top=10&$skip=2

  3. page and size - page used in conjunction with $size helps in pagination of resources.

    /vro/workflows?page=0&size=5

  4. $filter - $filter returns a subset of resources that satisfy the given predicate expression.

    /vro/workflows?$filter=startswith(name, 'Act')
    /vro/workflows?$filter=toupper(name) eq 'ACTIVATE'
    /vro/workflows?$filter=substringof('renameVM', name)
    /vro/workflows?$filter=name eq 'ABCD'