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": "dolor enim sint esse",
"inventoryName": "et commodo",
"offset": 69469464.15971836,
"limit": 24471285.60492997,
"filter": "laborum in aliqua proident pariatur",
"order": "adipisicing elit"
}
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"
}