getChildCustomContent method

Future<MultiEntityResult<ChildCustomContent>> getChildCustomContent({
  1. required int id,
  2. String? cursor,
  3. int? limit,
  4. String? sort,
})

Returns all child custom content for given custom content id. 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 access the Confluence site ('Can use' global permission). Only custom content that the user has permission to view will be returned.

Implementation

Future<MultiEntityResult<ChildCustomContent>> getChildCustomContent(
    {required int id, String? cursor, int? limit, String? sort}) async {
  return MultiEntityResult.fromJson(
    await _client.send(
      'get',
      'custom-content/{id}/children',
      pathParameters: {
        'id': '$id',
      },
      queryParameters: {
        if (cursor != null) 'cursor': cursor,
        if (limit != null) 'limit': '$limit',
        if (sort != null) 'sort': sort,
      },
    ),
    reviver: (v) => ChildCustomContent.fromJson(v as Map<String, Object?>),
  );
}