$createTable_Request method

  1. @experimental
Request $createTable_Request({
  1. required Api1CreateTableRequestApplicationJson $body,
})

Create a new table and return it.

Returns a DynamiteRequest backing the createTable operation. Throws a DynamiteApiException if the API call does not return an expected status code.

Status codes:

  • 200: Tables returned
  • 500

See:

Implementation

@_i2.experimental
_i3.Request $createTable_Request({required Api1CreateTableRequestApplicationJson $body}) {
  const _path = '/index.php/apps/tables/api/1/tables';
  final _uri = Uri.parse('${_rootClient.baseURL}$_path');
  final _request = _i3.Request('post', _uri);
  _request.headers['Accept'] = 'application/json';
// coverage:ignore-start
  final authentication = _i4.IterableExtension(_rootClient.authentications)?.firstWhereOrNull(
    (auth) => switch (auth) {
      _i1.DynamiteHttpBasicAuthentication() => true,
      _ => false,
    },
  );

  if (authentication != null) {
    _request.headers.addAll(
      authentication.headers,
    );
  } else {
    throw Exception('Missing authentication for basic_auth');
  }

// coverage:ignore-end
  _request.headers['Content-Type'] = 'application/json';
  _request.body = json.encode(
    _$jsonSerializers.serialize($body, specifiedType: const FullType(Api1CreateTableRequestApplicationJson)),
  );
  return _request;
}