Summary
          Get list of groups
          Description
          Get a list of groups.
          Route
          POST /automationgateway/getInventoryGroups
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | integrationType | string | yes | - | 
    | inventoryName | string | yes | - | 
    | offset | number | no | - | 
    | limit | number | no | - | 
    | filter | string | no | - | 
    | order | string | no | - | 
            
          
          
            Copied to Clipboard
            
            {
  "integrationType": "laborum",
  "inventoryName": "cupidatat amet proident esse id",
  "offset": -21470108.12667261,
  "limit": 81015223.3211227,
  "filter": "aliqua",
  "order": "ut anim sed"
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "integrationType": {
      "title": "integrationType",
      "type": "string"
    },
    "inventoryName": {
      "title": "inventoryName",
      "type": "string"
    },
    "offset": {
      "title": "offset",
      "type": "number"
    },
    "limit": {
      "title": "limit",
      "type": "number"
    },
    "filter": {
      "title": "filter",
      "type": "string"
    },
    "order": {
      "title": "order",
      "type": "string"
    }
  },
  "required": [
    "integrationType",
    "inventoryName"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | A JSON Object containing status, code and the result | 
            
          
          
            Copied to Clipboard
            
            {
  "result": true
}
           
          
            Copied to Clipboard
            
            {
  "properties": {
    "data": {
      "items": {
        "$ref": "#/definitions/Group"
      },
      "type": "array"
    },
    "meta": {
      "$ref": "#/definitions/Meta"
    }
  },
  "required": [
    "meta",
    "data"
  ],
  "type": "object"
}