Get my note information

Get the me user's note information.

Applies to: Skype for Business 2015

Getting a user's note involves resource navigation from application to me to note.

The steps here assume that you have already created an application and have received a response that contains the href for an application resource. For more information, see Create an application.

  1. Send a POST request on the makeMeAvailable resource.

One of the hypermedia links that are served in the response for the application resource is the href for the makeMeAvailable resource. Search for the me resource embedded in your application, and then locate the href of the makeMeAvailable link.

POST https://lyncweb.contoso.com/ucwa/oauth/v1/applications/101/me/makeMeAvailable HTTP/1.1
Accept: application/json
Content-Type: application/json
Authorization: Bearer cwt=AAEB...buHc
X-Ms-Origin: http://app.contoso.com
X-Requested-With: XMLHttpRequest
Referer: https://lyncweb.contoso.com/Autodiscover/XFrame/XFrame.html
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
Host: lyncweb.contoso.com
Content-Length: 37
Connection: Keep-Alive
Cache-Control: no-cache

{"SupportedModalities": ["Messaging"]}
  1. Process the response from the request in the previous step.

The response you receive should be 204 No content, as shown here.

HTTP/1.1 204 No Content
Connection: Keep-Alive
Date: Thu, 17 Jan 2013 00:0:00 GMT
Server: Microsoft-IIS/7.5
Cache-Control: no-cache
X-AspNet-Version: 4.0.30319
X-MS-Server-Fqdn: W15-LYNC-SE1.contoso.com
X-Powered-By: ASP.NET
  1. Send a GET request on the application resource.

A sample request is shown here.

GET https://lyncweb.contoso.com/ucwa/oauth/v1/applications/101 HTTP/1.1
Authorization: Bearer cwt=AAEB...buHc
Accept: application/json
X-Ms-Origin: http://app.contoso.com
X-Requested-With: XMLHttpRequest
Referer: https://lyncweb.contoso.com/Autodiscover/XFrame/XFrame.html
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
Host: lyncweb.contoso.com
Connection: Keep-Alive

  1. Process the response from the previous request.

You should receive a response code of 200 OK. The following is a typical response to the previous GET request.

Some links in the response will be used in subsequent steps, so it is important to cache portions of the response body. The link that will be used later is that for the note resource, which is in the embedded me resource.

For brevity, some parts of the response body are omitted, and IDs and tokens are shortened.

HTTP/1.1 200 OK
Connection: Keep-Alive
Content-Length: 1621
Date: Wed, 13 Feb 2013 21:56:33 GMT
Content-Type: application/json
Server: Microsoft-IIS/7.5
Cache-Control: no-cache
X-AspNet-Version: 4.0.30319
X-MS-Server-Fqdn: W15-LYNC-SE1.contoso.com
X-Powered-By: ASP.NET

{
"culture":"en-US",
"userAgent":"UCWA Samples",
"_links":{
"self":{"href":"/ucwa/oauth/v1/applications/101"},
"policies":{"href":"/ucwa/oauth/v1/applications/101/policies"},
"batch":{"href":"/ucwa/oauth/v1/applications/101/batch"},
"events":{"href":"/ucwa/oauth/v1/applications/101/events?ack=1"}
},
"_embedded":{
"me":{
"name":"Dana Birkby",
"uri":"sip:Dana@contoso.com",
"emailAddresses": ["Dana@contoso.com"],
"_links":{
"self":{"href":"/ucwa/oauth/v1/applications/101/me"},
"note":{"href":"/ucwa/oauth/v1/applications/101/me/note"},
"presence":{"href":"/ucwa/oauth/v1/applications/101/me/presence"},
"location":{"href":"/ucwa/oauth/v1/applications/101/me/location"},
"reportMyActivity":{"href":"/ucwa/oauth/v1/applications/101/me/reportMyActivity"},
"callForwardingSettings":{"href":"/ucwa/oauth/v1/applications/101/me/callForwardingSettings"},
"phones":{"href":"/ucwa/oauth/v1/applications/101/me/phones"},
"photo":{"href":"/ucwa/oauth/v1/applications/101/photos/Dana@contoso.com"}
},
"rel":"me"
},
"people":{...},
"onlineMeetings":{...},
"rel":"communication","etag":"29...41"}
},
"rel":"application"
}
  1. Send a GET request on the note resource.

A sample request is shown here.

GET /ucwa/oauth/v1/applications/101970941658/me/note HTTP/1.1
Authorization: Bearer cwt=AAEBH...buHc
Accept: application/json
X-Ms-Origin: http://app.contoso.com
X-Requested-With: XMLHttpRequest
Referer: https://lyncweb.contoso.com/Autodiscover/XFrame/XFrame.html
Accept-Language: en-US
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.2; Trident/6.0; .NET4.0E; .NET4.0C; .NET CLR 3.5.30729; .NET CLR 2.0.50727; .NET CLR 3.0.30729; InfoPath.3)
Host: lyncweb.contoso.com
DNT: 1
Connection: Keep-Alive
  1. Process the response from the previous GET request.

The response you receive should be 200 OK. The body of the request contains an entry named message that contains your note text as well as a link to the note resource.

HTTP/1.1 200 OK
Connection: Keep-Alive
Content-Length: 141
Date: Thu, 17 Jan 2013 00:00:00 GMT
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/7.5
Cache-Control: no-cache
X-AspNet-Version: 4.0.30319
X-MS-Server-Fqdn: W15-LYNC-SE1.contoso.com
X-Powered-By: ASP.NET

{
"message": "Random words...",
"type":"Personal",
"_links": {
"self":{"href":"/ucwa/oauth/v1/applications/101970941658/me/note"}
},
"rel":"note"
}