acceptShare method

Future<DynamiteResponse<RemoteAcceptShareResponseApplicationJson, void>> acceptShare({
  1. required int id,
  2. bool? oCSAPIRequest,
})

Accept a remote share.

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:

  • id ID of the share.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Share accepted successfully
  • 404: Share not found

See:

Implementation

Future<DynamiteResponse<RemoteAcceptShareResponseApplicationJson, void>> acceptShare({
  required int id,
  bool? oCSAPIRequest,
}) async {
  final rawResponse = acceptShareRaw(
    id: id,
    oCSAPIRequest: oCSAPIRequest,
  );

  return rawResponse.future;
}