Reversing documentation per issue #987

This commit is contained in:
Jaisen Mathai 2012-10-05 23:29:18 -07:00
parent 59410551cf
commit 6c0b96182c

View file

@ -63,7 +63,7 @@ The response is in a standard [response envelope](http://theopenphotoproject.org
* _message_, A string describing the result. Don't use this for anything but reading. * _message_, A string describing the result. Don't use this for anything but reading.
* _code_, _201_ on success * _code_, _201_ on success
* _result_, Boolean * _result_, A [Tag][Tag] object or FALSE on error
<a name="sample"></a> <a name="sample"></a>
#### Sample #### Sample
@ -71,7 +71,11 @@ The response is in a standard [response envelope](http://theopenphotoproject.org
{ {
"message":"", "message":"",
"code":201, "code":201,
"result": true "result":
{
"id": "mountain",
"count": 0
}
} }