myhomie_app/mycore_api/doc/LayoutApi.md
2021-12-01 15:41:22 +01:00

1.2 KiB

mycoreapi.api.LayoutApi

Load the API package

import 'package:mycoreapi/api.dart';

All URIs are relative to http://192.168.31.140

Method HTTP request Description
layoutGet GET /api/layout/panelSection It's a test ! :)

layoutGet

List layoutGet()

It's a test ! :)

Example

import 'package:mycoreapi/api.dart';
// TODO Configure OAuth2 access token for authorization: bearer
//defaultApiClient.getAuthentication<OAuth>('bearer').accessToken = 'YOUR_ACCESS_TOKEN';

final api_instance = LayoutApi();

try { 
    final result = api_instance.layoutGet();
    print(result);
} catch (e) {
    print('Exception when calling LayoutApi->layoutGet: $e\n');
}

Parameters

This endpoint does not need any parameter.

Return type

List

Authorization

bearer

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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