Skip to content

whiteboards

create

Create whiteboard

Creates a whiteboard in the space.

Permissions required: Permission to view the corresponding space. Permission to create a whiteboard in the space.

POST /whiteboards

FlagTypeRequiredDescription
--bodystringNorequest body (JSON string, @file, or - for stdin)
--privatestringNoThe whiteboard will be private. Only the user who creates this whiteboard will have permission to view and edit one.

Example:

bash
cf whiteboards create

create-property

Create content property for whiteboard

Creates a new content property for a whiteboard.

Permissions required: Permission to update the whiteboard.

POST /whiteboards/{id}/properties

FlagTypeRequiredDescription
--bodystringNorequest body (JSON string, @file, or - for stdin)
--idstringYesThe ID of the whiteboard to create a property for.

Example:

bash
cf whiteboards create-property --id <id>

delete

Delete whiteboard

Delete a whiteboard by id.

Deleting a whiteboard moves the whiteboard to the trash, where it can be restored later

Permissions required: Permission to view the whiteboard and its corresponding space. Permission to delete whiteboards in the space.

DELETE /whiteboards/{id}

FlagTypeRequiredDescription
--idstringYesThe ID of the whiteboard to be deleted.

Example:

bash
cf whiteboards delete --id <id>

delete-property-by-id

Delete content property for whiteboard by id

Deletes a content property for a whiteboard by its id.

Permissions required: Permission to edit the whiteboard.

DELETE /whiteboards/{whiteboard-id}/properties/{property-id}

FlagTypeRequiredDescription
--property-idstringYesThe ID of the property to be deleted.
--whiteboard-idstringYesThe ID of the whiteboard the property belongs to.

Example:

bash
cf whiteboards delete-property-by-id --property-id <property-id> --whiteboard-id <whiteboard-id>

get-ancestors

Get all ancestors of whiteboard

Returns all ancestors for a given whiteboard by ID in top-to-bottom order (that is, the highest ancestor is the first item in the response payload). The number of results is limited by the limit parameter and additional results (if available) will be available by calling this endpoint with the ID of first ancestor in the response payload.

This endpoint returns minimal information about each ancestor. To fetch more details, use a related endpoint, such as Get whiteboard by id.

Permissions required: Permission to access the Confluence site ('Can use' global permission). Permission to view the whiteboard and its corresponding space

GET /whiteboards/{id}/ancestors

FlagTypeRequiredDescription
--idstringYesThe ID of the whiteboard.
--limitstringNoMaximum number of items per result to return. If more results exist, call the endpoint with the highest ancestor's ID to fetch the next set of results.

Example:

bash
cf whiteboards get-ancestors --id <id>

get-by-id

Get whiteboard by id

Returns a specific whiteboard.

Permissions required: Permission to view the whiteboard and its corresponding space.

GET /whiteboards/{id}

FlagTypeRequiredDescription
--idstringYesThe ID of the whiteboard to be returned
--include-collaboratorsstringNoIncludes collaborators on the whiteboard.
--include-direct-childrenstringNoIncludes direct children of the whiteboard, as defined in the ChildrenResponse object.
--include-operationsstringNoIncludes operations associated with this whiteboard in the response, as defined in the Operation object.
The number of results will be limited to 50 and sorted in the default sort order.
A meta and _links property will be present to indicate if more results are available and a link to retrieve the rest of the results.
--include-propertiesstringNoIncludes content properties associated with this whiteboard in the response.
The number of results will be limited to 50 and sorted in the default sort order.
A meta and _links property will be present to indicate if more results are available and a link to retrieve the rest of the results.

Example:

bash
cf whiteboards get-by-id --id <id>

get-classification-level

Get whiteboard classification level

Returns the classification level for a specific whiteboard.

Permissions required: 'Permission to access the Confluence site ('Can use' global permission) and permission to view the whiteboard.

GET /whiteboards/{id}/classification-level

FlagTypeRequiredDescription
--idstringYesThe ID of the whiteboard for which classification level should be returned.

Example:

bash
cf whiteboards get-classification-level --id <id>

get-content-properties

Get content properties for whiteboard

Retrieves Content Properties tied to a specified whiteboard.

Permissions required: Permission to view the whiteboard.

GET /whiteboards/{id}/properties

FlagTypeRequiredDescription
--cursorstringNoUsed for pagination, this opaque cursor will be returned in the next URL in the Link response header. Use the relative URL in the Link header to retrieve the next set of results.
--idstringYesThe ID of the whiteboard for which content properties should be returned.
--keystringNoFilters the response to return a specific content property with matching key (case sensitive).
--limitstringNoMaximum number of attachments per result to return. If more results exist, use the Link header to retrieve a relative URL that will return the next set of results.
--sortstringNoUsed to sort the result by a particular field.

Example:

bash
cf whiteboards get-content-properties --id <id>

get-content-properties-by-id

Get content property for whiteboard by id

Retrieves a specific Content Property by ID that is attached to a specified whiteboard.

Permissions required: Permission to view the whiteboard.

GET /whiteboards/{whiteboard-id}/properties/{property-id}

FlagTypeRequiredDescription
--property-idstringYesThe ID of the content property being requested.
--whiteboard-idstringYesThe ID of the whiteboard for which content properties should be returned.

Example:

bash
cf whiteboards get-content-properties-by-id --property-id <property-id> --whiteboard-id <whiteboard-id>

get-descendants

Get descendants of a whiteboard

Returns descendants in the content tree for a given whiteboard by ID in top-to-bottom order (that is, the highest descendant is the first item in the response payload). The number of results is limited by the limit parameter and additional results (if available) will be available by calling this endpoint with the cursor in the response payload. There is also a depth parameter specifying depth of descendants to be fetched.

The following types of content will be returned:

  • Database
  • Embed
  • Folder
  • Page
  • Whiteboard

This endpoint returns minimal information about each descendant. To fetch more details, use a related endpoint based on the content type, such as:

Permissions required: Permission to access the Confluence site ('Can use' global permission). Permission to view the whiteboard and its corresponding space

GET /whiteboards/{id}/descendants

FlagTypeRequiredDescription
--cursorstringNoUsed for pagination, this opaque cursor will be returned in the next URL in the Link response header. Use the relative URL in the Link header to retrieve the next set of results.
--depthstringNoMaximum depth of descendants to return. If more results are required, use the endpoint corresponding to the content type of the deepest descendant to fetch more descendants.
--idstringYesThe ID of the whiteboard.
--limitstringNoMaximum number of items per result to return. If more results exist, call the endpoint with the cursor to fetch the next set of results.

Example:

bash
cf whiteboards get-descendants --id <id>

get-direct-children

Get direct children of a whiteboard

Returns all children for given whiteboard id in the content tree. 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.

The following types of content will be returned:

  • Database
  • Embed
  • Folder
  • Page
  • Whiteboard

This endpoint returns minimal information about each child. To fetch more details, use a related endpoint based on the content type, such as:

Permissions required: Permission to access the Confluence site ('Can use' global permission). Only content that the user has permission to view will be returned.

GET /whiteboards/{id}/direct-children

FlagTypeRequiredDescription
--cursorstringNoUsed for pagination, this opaque cursor will be returned in the next URL in the Link response header. Use the relative URL in the Link header to retrieve the next set of results.
--idstringYesThe ID of the parent whiteboard.
--limitstringNoMaximum number of items per result to return. If more results exist, use the Link header to retrieve a relative URL that will return the next set of results.
--sortstringNoUsed to sort the result by a particular field.

Example:

bash
cf whiteboards get-direct-children --id <id>

get-operations

Get permitted operations for a whiteboard

Returns the permitted operations on specific whiteboard.

Permissions required: Permission to view the whiteboard and its corresponding space.

GET /whiteboards/{id}/operations

FlagTypeRequiredDescription
--idstringYesThe ID of the whiteboard for which operations should be returned.

Example:

bash
cf whiteboards get-operations --id <id>

post-classification-level

Reset whiteboard classification level

Resets the classification level for a specific whiteboard for the space default classification level.

Permissions required: 'Permission to access the Confluence site ('Can use' global permission) and permission to view the whiteboard.

POST /whiteboards/{id}/classification-level/reset

FlagTypeRequiredDescription
--bodystringNorequest body (JSON string, @file, or - for stdin)
--idstringYesThe ID of the whiteboard for which classification level should be updated.

Example:

bash
cf whiteboards post-classification-level --id <id>

put-classification-level

Update whiteboard classification level

Updates the classification level for a specific whiteboard.

Permissions required: 'Permission to access the Confluence site ('Can use' global permission) and permission to edit the whiteboard.

PUT /whiteboards/{id}/classification-level

FlagTypeRequiredDescription
--bodystringNorequest body (JSON string, @file, or - for stdin)
--idstringYesThe ID of the whiteboard for which classification level should be updated.

Example:

bash
cf whiteboards put-classification-level --id <id>

update-property-by-id

Update content property for whiteboard by id

Update a content property for a whiteboard by its id.

Permissions required: Permission to edit the whiteboard.

PUT /whiteboards/{whiteboard-id}/properties/{property-id}

FlagTypeRequiredDescription
--bodystringNorequest body (JSON string, @file, or - for stdin)
--property-idstringYesThe ID of the property to be updated.
--whiteboard-idstringYesThe ID of the whiteboard the property belongs to.

Example:

bash
cf whiteboards update-property-by-id --property-id <property-id> --whiteboard-id <whiteboard-id>