action onsched_get_consumer_v1_servicegroups { label: "List Service Groups" description: "
Use this endpoint to return a list of Service Groups for the requested location. If not specified, the business location defaults to the primary business location. Use the offset and limit parameters to control the page start and size. Default offset is 0, limit is 20, maximum is 100. Use the other query parameters to filter the results further.
" provider: onsched method: GET path: "/consumer/v1/servicegroups" encoding: json input: { type: "object" properties: { 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: { 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 } } hasMore: { type: "boolean" } object: { type: "string" } total: { type: "integer" format: "int32" } url: { type: "string" } } additionalProperties: false } }