PUT api/reportserver/v3/reports/{reportId}
Updates the report with the specified ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportId |
The report ID. | string |
Required |
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Specifies the report name. | string |
Required |
| Description |
Specifies the report description. | string |
None. |
| CategoryId |
Specifies the ID of the report's category. | string |
Required |
Request body formats
application/json, text/json, application/*+json
{
"Name": "Financial Reports",
"Description": "Displayed to help users understand the purpose of this item.",
"CategoryId": "63f34f4468b"
}
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Specifies the report identifier. | string |
None. |
| CategoryId |
Specifies the ID of the category which the report is assigned to. | string |
None. |
| Description |
Specifies the report description. | string |
None. |
| Name |
Specifies the report name. | string |
None. |
| CreatedBy |
Specifies the ID of the user who has created the report. | string |
None. |
| LockedBy |
Specifies the ID of the user who has locked the report. | string |
None. |
| Extension |
Specifies the format of the report contents (.trdx, .trdj or .trdp) | string |
None. |
| IsDraft |
Specifies whether the report is a draft. | boolean |
None. |
| IsFavorite |
Specifies whether the report is favorite for the currently logged user. | boolean |
None. |
| LastRevisionId |
Specifies the ID of the last report revision. | string |
None. |
| CreatedByName |
Provides the full name of the user who has created the report. | string |
None. |
| LockedByName |
Provides the full name of the user who has locked the report. | string |
None. |
| LastModifiedDate |
Obsolete since R2 2020. Use LastModifiedDateUtc property instead. Gets the DateTime string value in the local timezone on when the report was last modified. | string |
None. |
| LastModifiedDateUtc |
Gets or sets the DateTime in UTC on when the report was last modified. | date |
None. |
| CanEdit |
Determines whether the report can be edited by the logged user. | boolean |
None. |
| CanView |
Determines whether the report can be viewed by the logged user. | boolean |
None. |
Response Formats
application/json
{
"Id": "531900e263c",
"CategoryId": "63f34f4468b",
"Description": "Displayed to help users understand the purpose of this item.",
"Name": "Financial Reports",
"CreatedBy": "f2884fe774cc4134ab2a58584ebd5e4b",
"LockedBy": "a6d4cb3c2b954355b626cfde48bec36f",
"Extension": ".trdx",
"IsDraft": true,
"IsFavorite": true,
"LastRevisionId": "2",
"CreatedByName": "Maria Garcia",
"LockedByName": "Alex Johnson",
"LastModifiedDate": "8/12/2026 2:16:00 PM",
"LastModifiedDateUtc": "2026-08-12T14:16:00.1231851Z",
"CanEdit": true,
"CanView": true
}