Report - Clones a report by ID with provided details

Clones the requested report identified by its unique ID with the provided details.

post
Authorizations
Path parameters
reportIdstring · uuidRequired

Enter ID of the report to clone.

Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Body
namestring | nullableOptional
targetWorkspaceIdstring · uuid | nullableOptional
targetModelIdstring | nullableOptional
Responses
200
Success: The report was successfully cloned with the provided details.
post
POST /reports/{reportId} HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 97

{
  "name": "text",
  "targetWorkspaceId": "123e4567-e89b-12d3-a456-426614174000",
  "targetModelId": "text"
}
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "name": "text",
  "datasetId": "text",
  "appId": "text",
  "description": "text",
  "reportType": "text",
  "originalReportId": "123e4567-e89b-12d3-a456-426614174000",
  "webUrl": "text",
  "embedUrl": "text",
  "users": [
    {
      "emailAddress": "text",
      "displayName": "text",
      "identifier": "text",
      "graphId": "text",
      "userType": "text",
      "principalType": {},
      "profile": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "displayName": "text"
      },
      "reportUserAccessRight": {}
    }
  ],
  "subscriptions": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "title": "text",
      "artifactId": "123e4567-e89b-12d3-a456-426614174000",
      "artifactDisplayName": "text",
      "subArtifactDisplayName": "text",
      "artifactType": "text",
      "isEnabled": true,
      "frequency": "text",
      "startDate": "2025-06-27T11:41:15.859Z",
      "endDate": "2025-06-27T11:41:15.859Z",
      "linkToContent": true,
      "previewImage": true,
      "attachmentFormat": "text",
      "users": [
        {
          "emailAddress": "text",
          "displayName": "text",
          "identifier": "text",
          "graphId": "text",
          "userType": "text",
          "principalType": {},
          "profile": {
            "id": "123e4567-e89b-12d3-a456-426614174000",
            "displayName": "text"
          }
        }
      ]
    }
  ]
}

Last updated