action onsched_get_consumer_v1_resourcegroups { label: "List Resource Groups" description: "

Use this endpoint to return a list of Resource Groups for the requested location. If not specified, the business location defaults to the primary business location.

" provider: onsched method: GET path: "/consumer/v1/resourcegroups" encoding: json input: { type: "object" properties: { deleted: { type: "boolean" } limit: { type: "integer" format: "int32" } locationId: { type: "string" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" format: "int32" } data: { type: "array" items: { 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 } } hasMore: { type: "boolean" } object: { type: "string" } total: { type: "integer" format: "int32" } url: { type: "string" } } additionalProperties: false } }