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": "officia",
"name": "velit aliquip aliqua",
"description": "ullamco nisi veniam sunt",
"services": [
"laborum",
"officia eu nisi irure",
"cupidatat amet culpa est sint"
],
"created": "2017-09-23T18:22:54.059Z",
"createdBy": "quis magna cupidatat",
"lastUpdated": "2011-01-31T09:22:53.479Z",
"lastUpdatedBy": "non aliqua dolore proident dolor"
}
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"
]
}