Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.34 KB

status.md

File metadata and controls

57 lines (36 loc) · 1.34 KB

Status

Get a status or your status

GET /statuses.json | /people/{user_id}/status.json

tw.status.get(user_id)

Get your status

GET /me/status.json

tw.status.getMe()

Create your status

POST /me/status.json

tw.status.create(body)

Update your status

PUT /me/status/{status_id}.json

tw.status.updateMe(status_id, body)

Update a status

PUT /people/status/${status_id}.json | /people/${person_id}/status/{status_id}.json

tw.status.update(status_id, person_id, body)

delete your Profile status

DELETE /me/status/{status_id}.json

tw.status.deleteMe(status_id)

Delete a status

DELETE /people/status/${status_id}.json | /people/${person_id}/status/{status_id}.json

tw.status.delete(status_id, person_id)