| Requires any of the roles: | bookingsupplier-administrator-write, bookingsupplier-administrator-read, superadmin | 
| GET | /services/groups | Get all grouping headers for services | Get all service group headers | 
|---|
import 'package:servicestack/servicestack.dart';
class ServiceGroupsQueryResponse implements IConvertible
{
    String? Name;
    ServiceGroupsQueryResponse({this.Name});
    ServiceGroupsQueryResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        Name = json['Name'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'Name': Name
    };
    getTypeName() => "ServiceGroupsQueryResponse";
    TypeContext? context = _ctx;
}
// @ValidateRequest(Validator="IsAuthenticated")
class ServiceGroupsQuery implements IConvertible
{
    /**
    * Company to show service groups for
    */
    // @ApiMember(Description="Company to show service groups for", ParameterType="query")
    String? CompanyId;
    ServiceGroupsQuery({this.CompanyId});
    ServiceGroupsQuery.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        CompanyId = json['CompanyId'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'CompanyId': CompanyId
    };
    getTypeName() => "ServiceGroupsQuery";
    TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.bookmore.com', types: <String, TypeInfo> {
    'ServiceGroupsQueryResponse': TypeInfo(TypeOf.Class, create:() => ServiceGroupsQueryResponse()),
    'ServiceGroupsQuery': TypeInfo(TypeOf.Class, create:() => ServiceGroupsQuery()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /services/groups HTTP/1.1 Host: api.bookmore.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"Name":"String"}