Who am I
A simple "Who am I" request, just to verify that ContinuityApp's APIs are up and running, there are no connectivity issues, and you can authenticate.
Definition
GET https://v1.continuityapp.ws/whoami
Example request (Basic Auth)
$ curl https://v1.continuityapp.ws/whoami \
-u example@continuityapp.com:apikey
Example request (OAuth)
$ curl https://v1.continuityapp.ws/whoami?oauth_token=<access_token>
Returns
The user's email address used to authenticate the request.
Example response
{
"response":{
"email": "example@continuityapp.com"
}
}
Errors
There are no specific errors for this API.
comments powered by Disqus