getSignedUrl method
GET /{version}/files/{filesIntegrationId}/sign
Implementation
Future<Object?> getSignedUrl(
{required Object filesIntegrationId,
Map<String, Object?>? query,
Map<String, String>? headers}) {
return transport.send(
route: '/{version}/files/{filesIntegrationId}/sign',
method: 'GET',
query: query,
headers: headers,
pathParams: <String, Object?>{'filesIntegrationId': filesIntegrationId},
);
}