GET api/reportserver/v3/reports
Returns a collection of all reports.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ReportInfo
| 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": "0fae882006e",
"CategoryId": "0e730b5d9af",
"Description": "Provides additional context for users browsing the Report Server catalog.",
"Name": "Financial Reports",
"CreatedBy": "3d98ac545bdc492a9773e22843f44884",
"LockedBy": "f60cfd52b7b144f4a48a767919bab89a",
"Extension": ".trdx",
"IsDraft": true,
"IsFavorite": true,
"LastRevisionId": "0",
"CreatedByName": "Jane Doe",
"LockedByName": "John Smith",
"LastModifiedDate": "8/12/2026 2:16:00 PM",
"LastModifiedDateUtc": "2026-08-12T14:16:00.5661808Z",
"CanEdit": true,
"CanView": true
},
{
"Id": "b1b78e72abd",
"CategoryId": "d14d884e50e",
"Description": "Provides additional context for users browsing the Report Server catalog.",
"Name": "Sales Reports",
"CreatedBy": "243e57295a0b47eebfb61852991b1aad",
"LockedBy": "c4689dbba0b641e3bbeb079754028c97",
"Extension": ".trdp",
"IsDraft": true,
"IsFavorite": true,
"LastRevisionId": "0",
"CreatedByName": "Alex Johnson",
"LockedByName": "Jane Doe",
"LastModifiedDate": "8/12/2026 2:16:00 PM",
"LastModifiedDateUtc": "2026-08-12T14:16:00.5662007Z",
"CanEdit": true,
"CanView": true
}
]