0
votes

I've got the below error when I have tried to get the Site collection and site IDs. What could be the cause? Any help would be really appreciated.

var getMessage = new HttpRequestMessage(HttpMethod.Get, "https://www.onenote.com/api/beta/myorganization/siteCollections/FromUrl(url='https://123.sharepoint.com/teams/techs'");

{
  StatusCode: 400,
  ReasonPhrase: 'Bad Request',
  Version: 1.1,
  Content: System.Net.Http.StreamContent,
  Headers: {
    OData - Version: 4.0 Cache - Control: private Server: Microsoft - IIS / 8.5 X - AspNet - Version: 4.0.30319 X - Powered - By: ASP.NET X - Powered - By: ASP.NET Date: Sun, 17 Jan 2016 19: 59: 05 GMT Content - Length: 168 Content - Type: application / json;
    charset = utf - 8;
    odata.metadata = minimal;
    odata.streaming = true;
    IEEE754Compatible = false
  }
}
2

2 Answers

1
votes

If that's a verbatim code snippet, looks like you're missing the closing parenthesis for the url parameter.

var getMessage = new HttpRequestMessage(HttpMethod.Get, "https://www.onenote.com/api/beta/myorganization/siteCollections/FromUrl(url='https://123.sharepoint.com/teams/techs')");