$createRowInTable_Request method
- @experimental
- required int tableId,
- required Api1CreateRowInTableRequestApplicationJson $body,
Create a row within a table.
Returns a DynamiteRequest
backing the createRowInTable operation.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Parameters:
tableId
Table ID.
Status codes:
- 200: Row returned
- 403: No permissions
- 500
See:
- createRowInTable for a method executing this request and parsing the response.
- $createRowInTable_Serializer for a converter to parse the
Response
from an executed this request.
Implementation
@_i2.experimental
_i3.Request $createRowInTable_Request({
required int tableId,
required Api1CreateRowInTableRequestApplicationJson $body,
}) {
final _parameters = <String, Object?>{};
final __tableId = _$jsonSerializers.serialize(tableId, specifiedType: const FullType(int));
_parameters['tableId'] = __tableId;
final _path = _i5.UriTemplate('/index.php/apps/tables/api/1/tables/{tableId}/rows').expand(_parameters);
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(Api1CreateRowInTableRequestApplicationJson)),
);
return _request;
}