Boards
Clone a board
POST
/api/boards/{boardId}/cloneCreates a copy of a board with optional changes to its name, description, and configuration. Removes invalid report references from the copy.
Headers
| Name | Type | Description |
|---|---|---|
| Authorizationrequired | string | Authentication credentials, e.g. Bearer <token>. |
Path parameters
| Name | Type | Description |
|---|---|---|
| boardIdrequired | string | ID of the board. |
Request body
| Name | Type | Description |
|---|---|---|
| description | string | Description of the resource. |
| name | string | Display name of the resource. |
| parameters | object | Configuration parameters for the resource. |
Example request
Responses
200The operation completed successfully.
| Name | Type | Description |
|---|---|---|
| createdAtrequired | string | Date and time the record was created. |
| descriptionrequired | string | Description of the resource. |
| idrequired | string | Unique identifier of the resource. |
| namerequired | string | Display name of the resource. |
| parametersrequired | anyOf | Configuration parameters for the resource. |
| teamIdrequired | string | ID of the associated team. |
| typerequired | string | |
| updatedAtrequired | string | Date and time the record was last updated. |
| userIdrequired | string | ID of the associated user. |
200 example
400Bad request.
| Name | Type | Description |
|---|---|---|
| errorrequired | object | Error details returned when the operation fails. |
400 example
401Unauthorized.
| Name | Type | Description |
|---|---|---|
| errorrequired | object | Error details returned when the operation fails. |
401 example
Code samples
cURL