createApp method

Future<DynamiteResponse<CreateAppResponseApplicationJson, void>> createApp({
  1. required String deviceId,
  2. required String appName,
})

Create an authorization token for a new 3rd party service.

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:

  • deviceId ID of the device.
  • appName Name of the app.

Status codes:

  • 200: App created successfully

See:

Implementation

Future<_i1.DynamiteResponse<CreateAppResponseApplicationJson, void>> createApp({
  required String deviceId,
  required String appName,
}) async {
  final _request = $createApp_Request(
    deviceId: deviceId,
    appName: appName,
  );
  final _response = await httpClient.send(_request);

  final _serializer = $createApp_Serializer();
  final _rawResponse =
      await _i1.ResponseConverter<CreateAppResponseApplicationJson, void>(_serializer).convert(_response);
  return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}