Skip to content
danmux edited this page Feb 6, 2012 · 2 revisions

The Person url is the root of an individuals data store

If a current and authenticated token is used there will be a good json response.

Person

remember to pass a recognised token in the url

url

https://www.moneytoolkit.com/pub/person/{username}?tkn={token}

(where username is the user you authenticated earlier and got the returned token) e.g.

https://www.moneytoolkit.com/pub/person/hairyman?tkn=htKTfgT096FFg

method

GET

headers

No specific requirement but consider:

Accept: application/json

query params

  • tkn = the token passed in
  • in = indent amount, and pretty print the json

response

###Codes

  • 200 - A successful request.
  • 401 - Unauthorised

###Body A successful auth the body returns a token in json and the message WILL be 'authenticated'...


Or in case of 401's:

"message": "Unauthorised"

Clone this wiki locally