Reputation: 21
I am trying to create a report/catalog item using the SSRS REST APIs documented here.
I can successfully create folders and resources using the json:
{
"Name": "Test_Report",
"Description": "",
"Path": "MyFolder/Test_Report",
"Type": "ReportModel",
"Hidden": false,
"ModifiedBy": "User",
"CreatedBy": "User",
"ParentFolderId": null,
"IsFavorite": false,
"ContentType": null,
"Content": "" }
However when creating a report or catalog item, I am getting HTTP 500 or 400 errors like: this
My questions are:
A string value that contains binary encoding by base64url encoding rules
what does this mean exactly? and what should be the "ContentType" for this?
Upvotes: 1
Views: 461