action onsched_get_consumer_v1_servicegroups_id { label: "Get Service Group" description: "

Use this endpoint to return a Service Group object. A valid serviceGroup id is required. Find serviceGroup id's by using the GET /consumer/v1/serviceGroups endpoint.

" provider: onsched method: GET path: "/consumer/v1/servicegroups/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { companyId: { type: "string" } description: { type: "string" } id: { type: "string" } imageUrl: { type: "string" } isDeleted: { type: "boolean" } locationId: { type: "string" } name: { type: "string" } object: { type: "string" } type: { type: "integer" format: "int32" } } additionalProperties: false } }