getCustomContentOperations method
Returns the permitted operations on specific custom content.
Permissions required: Permission to view the parent content of the custom content and its corresponding space.
Implementation
Future<PermittedOperationsResponse> getCustomContentOperations(int id) async {
return PermittedOperationsResponse.fromJson(await _client.send(
'get',
'custom-content/{id}/operations',
pathParameters: {
'id': '$id',
},
));
}