POST api/reportserver/v2/reports
Creates a new report.
Request Information
URI Parameters
None.
Body Parameters
Report model.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name of the newly uploaded report. | string |
Required |
| Description |
The description of the report. | string |
None. |
| CategoryId |
The ID of the category this report will belong to. | string |
Required |
| ReportFile |
The HttpFile object which contains the report file and additional meta information. | HttpFile |
Required |
Request body formats
application/json, text/json
{
"Name": "Marketing Reports",
"Description": "Provides additional context for users browsing the Report Server catalog.",
"CategoryId": "8eb8a6847ed",
"ReportFile": {
"Name": "HR Reports",
"FileName": "/Reports/SalesSummary.trdp",
"MediaType": "Media Type 1392",
"Buffer": "QEA="
}
}
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, text/json
{
"Id": "e51ffde3513",
"CategoryId": "8eb8a6847ed",
"Description": "Provides additional context for users browsing the Report Server catalog.",
"Name": "Marketing Reports",
"CreatedBy": "9b8bfcbe927c453a83505f6bb83f9c7e",
"LockedBy": "d43f522656de4775933e040bd8c59a17",
"Extension": ".trdp",
"IsDraft": true,
"IsFavorite": true,
"LastRevisionId": "4",
"CreatedByName": "John Smith",
"LockedByName": "Maria Garcia",
"LastModifiedDate": "8/12/2026 2:15:53 PM",
"LastModifiedDateUtc": "2026-08-12T14:15:53.2333325Z",
"CanEdit": true,
"CanView": true
}