Version 2, last updated by Jonathan Ferguson at June 01, 2010 UTC
| URL | https://api.taykt.com/account/{email} |
| HTTP Method | GET |
| Requires Authentication | Yes |
Parameters
- email - the email address associated with the account
Example
curl -v -u someone@example.com:password https://api.taykt.com/account/someone@example.com
XML Response
<?xml version="1.0" encoding="UTF-8"?>
<account self="https://api.taykt.com/account/someone@example.com" email="someone@example.com">
<messages>
<message word="bananas" href="https://api.taykt.com/message/bananas"/>
<message word="apples" href="https://api.taykt.com/message/apples"/>
</messages>
</account>
JSON Response
{
"account" : {
"self" : "https://api.taykt.com/account/someone@example.com",
"email" : "someone@example.com",
"messages" : {
"message" : [ {
"word" : "bananas",
"href" : "https://api.taykt.com/message/iwant"
}, {
"word" : "apples",
"href" : "https://api.taykt.com/message/iPad"
}]
}
}
}