Get specific group by id. Detailed information about a group is returned
Name | Type | Description |
---|---|---|
request | GetGroupRequest |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/OrderWorkflow/GetGroup
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
request={
"GroupId": 1
}
This is an example of the response JSON. Results will vary depending on your data.
{
"Group": {
"GroupId": 1,
"LocationId": "c0ababdd-7d84-4381-9a3d-ffa40bcd2a64",
"Name": "sample string 3",
"Prefix": "sam",
"Seed": 5,
"MaxOrderCount": 6,
"Prevalence": 7,
"JobCount": 8,
"OrderCount": 9,
"AttachmentCount": 10,
"Condition": {
"Where": "sample string 1",
"Inner": "sample string 2",
"Sort": "sample string 3"
},
"Action": {
"Actions": [
"sample string 1"
]
},
"HasAction": true
}
}