Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Latest commit

 

History

History
127 lines (83 loc) · 3.05 KB

BrandingApi.md

File metadata and controls

127 lines (83 loc) · 3.05 KB

openapi.api.BrandingApi

Load the API package

import 'package:openapi/api.dart';

All URIs are relative to http://localhost

Method HTTP request Description
getBrandingCss GET /Branding/Css Gets branding css.
getBrandingCss2 GET /Branding/Css.css Gets branding css.
getBrandingOptions GET /Branding/Configuration Gets branding configuration.

getBrandingCss

String getBrandingCss()

Gets branding css.

Example

import 'package:openapi/api.dart';

final api = Openapi().getBrandingApi();

try {
    final response = api.getBrandingCss();
    print(response);
} catch on DioException (e) {
    print('Exception when calling BrandingApi->getBrandingCss: $e\n');
}

Parameters

This endpoint does not need any parameter.

Return type

String

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/css, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getBrandingCss2

String getBrandingCss2()

Gets branding css.

Example

import 'package:openapi/api.dart';

final api = Openapi().getBrandingApi();

try {
    final response = api.getBrandingCss2();
    print(response);
} catch on DioException (e) {
    print('Exception when calling BrandingApi->getBrandingCss2: $e\n');
}

Parameters

This endpoint does not need any parameter.

Return type

String

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/css, application/json, application/json; profile=CamelCase, application/json; profile=PascalCase

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getBrandingOptions

BrandingOptions getBrandingOptions()

Gets branding configuration.

Example

import 'package:openapi/api.dart';

final api = Openapi().getBrandingApi();

try {
    final response = api.getBrandingOptions();
    print(response);
} catch on DioException (e) {
    print('Exception when calling BrandingApi->getBrandingOptions: $e\n');
}

Parameters

This endpoint does not need any parameter.

Return type

BrandingOptions

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase

[Back to top] [Back to API list] [Back to Model list] [Back to README]