getLabelBlogPosts method
Returns the blogposts of specified label. The number of results is limited
by the limit
parameter and additional results (if available)
will be available through the next
URL present in the Link
response
header.
Permissions required: Permission to view the content of the page and its corresponding space.
Implementation
Future<MultiEntityResult<BlogPostBulk>> getLabelBlogPosts(
{required int id,
List<int>? spaceId,
String? bodyFormat,
String? sort,
String? cursor,
int? limit,
bool? serializeIdsAsStrings}) async {
return MultiEntityResult.fromJson(
await _client.send(
'get',
'labels/{id}/blogposts',
pathParameters: {
'id': '$id',
},
queryParameters: {
if (spaceId != null) 'space-id': spaceId.map((e) => '$e').join(','),
if (bodyFormat != null) 'body-format': bodyFormat,
if (sort != null) 'sort': sort,
if (cursor != null) 'cursor': cursor,
if (limit != null) 'limit': '$limit',
if (serializeIdsAsStrings != null)
'serialize-ids-as-strings': '$serializeIdsAsStrings',
},
),
reviver: (v) => BlogPostBulk.fromJson(v as Map<String, Object?>),
);
}