GET api/reportserver/reports/{reportId}/revisions

Returns a collection of all report revisions for the specified report.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
reportId

Report ID.

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ReportRevisionInfo
NameDescriptionTypeAdditional information
Id

Gets or sets the report revision identifier.

string

None.

Version

Gets or sets the version of the report revision.

integer

None.

Comment

Gets or sets report revision comment.

string

None.

CreatedBy

Gets or sets the ID of the user who has created the revision.

string

None.

Date

Obsolete since R2 2020. Use DateCreatedUtc property instead. Gets or sets the date when the report revision was created.

date

None.

DateCreatedUtc

Gets or sets the date when the report revision was created in UTC.

date

None.

Extension

Gets or sets the extension of the revision file

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "Version": 2,
    "Comment": "sample string 3",
    "CreatedBy": "sample string 4",
    "Date": "2024-03-20T10:06:30.4736296+00:00",
    "DateCreatedUtc": "2024-03-20T10:06:30.4736296+00:00",
    "Extension": "sample string 7"
  },
  {
    "Id": "sample string 1",
    "Version": 2,
    "Comment": "sample string 3",
    "CreatedBy": "sample string 4",
    "Date": "2024-03-20T10:06:30.4736296+00:00",
    "DateCreatedUtc": "2024-03-20T10:06:30.4736296+00:00",
    "Extension": "sample string 7"
  }
]
In this article
Not finding the help you need?