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": "magna veniam est",
"name": "minim velit",
"description": "magna ut voluptate nisi",
"services": [
"Lorem labore",
"est",
"ullamco commodo aliquip in",
"dolore nostrud laboris magna labore"
],
"created": "2012-10-25T22:33:58.767Z",
"createdBy": "officia velit ipsum proident fugiat",
"lastUpdated": "1976-01-26T07:35:24.032Z",
"lastUpdatedBy": "ut voluptate"
}
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"
]
}