action onsched_get_consumer_v1_resourcegroups_id { label: "Get Resource Group" description: "
Use this endpoint to return a Resource Group object. A valid resourceGroup id is required. Find resourceGroup id's by using the GET /consumer/v1/resourceGroups endpoint.
" provider: onsched method: GET path: "/consumer/v1/resourcegroups/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { bookingNotification: { type: "integer" format: "int32" } deletedStatus: { type: "boolean" } deletedTime: { type: "string" format: "date-time" } description: { type: "string" } email: { type: "string" } id: { type: "string" } locationId: { type: "string" } name: { type: "string" } object: { type: "string" } } additionalProperties: false } }