getMatterbridgeVersion method

Get Matterbridge version.

This endpoint requires admin access.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • apiVersion Defaults to v1.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Bridge version returned
  • 400: Getting bridge version is not possible

See:

Implementation

Future<_i1.DynamiteResponse<MatterbridgeSettingsGetMatterbridgeVersionResponseApplicationJson, void>>
    getMatterbridgeVersion({
  MatterbridgeSettingsGetMatterbridgeVersionApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final rawResponse = getMatterbridgeVersionRaw(
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
  );

  return rawResponse.future;
}