Summary
Gets a service group by its ID.
Description
Gets a service group by its ID.
Route
GET /policy-manager/service-groups/:id
Roles
admin
other
readonly
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
id |
string |
yes |
Id of the service group |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
serviceGroup |
object |
Service Group |
Copied to Clipboard
{
"id": "Lorem Duis",
"name": "occaecat eiusmod ullamco Duis exercitation",
"description": "eiusmod officia dolore consectetur",
"services": [
"deserunt Ut sunt in",
"aliqua",
"nisi nulla fugiat dolor do",
"dolore velit magna eiusmod"
],
"created": "2014-01-08T03:35:19.154Z",
"createdBy": "dolor sed",
"lastUpdated": "1941-07-17T05:58:02.974Z",
"lastUpdatedBy": "amet nulla veniam ut incididunt"
}
Copied to Clipboard
{
"title": "serviceGroup",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"services": {
"type": "array",
"items": {
"title": "serviceId",
"type": "string"
}
},
"created": {
"type": "string",
"format": "date-time"
},
"createdBy": {
"type": "string"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"lastUpdatedBy": {
"type": "string"
}
},
"required": [
"id",
"name",
"description",
"services",
"created",
"createdBy",
"lastUpdated",
"lastUpdatedBy"
]
}