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