CustomContentApi class
This document describes Confluence's v2 APIs. This is intended to be an iteration on the existing Confluence Cloud REST API with improvements in both endpoint definitions and performance.
Constructors
- CustomContentApi(ApiClient _client)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
createCustomContent(
{bool? serializeIdsAsStrings}) → Future< CustomContentSingle> - Creates a new custom content in the given space, page, blogpost or other custom content.
-
deleteCustomContent(
int id) → Future< void> - Delete a custom content by id.
-
getCustomContentById(
{required int id, String? bodyFormat, int? version, bool? serializeIdsAsStrings}) → Future< CustomContentSingle> - Returns a specific piece of custom content.
-
getCustomContentByType(
{required String type, List< int> ? id, List<int> ? spaceId, String? sort, String? cursor, int? limit, String? bodyFormat, bool? serializeIdsAsStrings}) → Future<MultiEntityResult< CustomContentBulk> > -
Returns all custom content for a given type. The number of results is
limited by the
limit
parameter and additional results (if available) will be available through thenext
URL present in theLink
response header. -
getCustomContentByTypeInBlogPost(
{required int id, required String type, String? sort, String? cursor, int? limit, String? bodyFormat, bool? serializeIdsAsStrings}) → Future< MultiEntityResult< CustomContentBulk> > -
Returns all custom content for a given type within a given blogpost. The
number of results is limited by the
limit
parameter and additional results (if available) will be available through thenext
URL present in theLink
response header. -
getCustomContentByTypeInPage(
{required int id, required String type, String? sort, String? cursor, int? limit, String? bodyFormat, bool? serializeIdsAsStrings}) → Future< MultiEntityResult< CustomContentBulk> > -
Returns all custom content for a given type within a given page. The
number of results is limited by the
limit
parameter and additional results (if available) will be available through thenext
URL present in theLink
response header. -
getCustomContentByTypeInSpace(
{required int id, required String type, String? cursor, int? limit, String? bodyFormat, bool? serializeIdsAsStrings}) → Future< MultiEntityResult< CustomContentBulk> > -
Returns all custom content for a given type within a given space. The
number of results is limited by the
limit
parameter and additional results (if available) will be available through thenext
URL present in theLink
response header. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
updateCustomContent(
{required int id, bool? serializeIdsAsStrings}) → Future< CustomContentSingle> - Update a custom content by id.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited