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": "occaecat",
"name": "et sed",
"description": "dolor",
"services": [
"aliqua adipisicing",
"commodo Ut ex"
],
"created": "1997-11-11T17:26:30.54Z",
"createdBy": "ut dolore",
"lastUpdated": "2018-05-30T20:28:34.955Z",
"lastUpdatedBy": "incididunt tempor"
}
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"
]
}