thanks for your time I have a POST request that I want to document in the blueprint apiary, the header is something like this:
text/html
_method:POST
data[User][username]:
data[User][password]:
data[User][remember]:0
I have something like this but I am not sure how to finish it:
## login [/users/login/{username}{password}{remember}{ident}]
Login with a user and password
+ Parameters
+ username (required, string, `myname`) ... the username format should follow CakePHP: data[User][username].
+ password (required, string, `whatever`) ... the password format should follow CakePHP: data[User][password]
+ remember (required, number, `0`) ... the remember format should follow CakePHP: data[User][remember]
+ ident (optional, number, `0`) ... the ident format should follow CakePHP: data[User][ident]
### make login [POST]
+ login by user (text/plain)
What goes in here???????????
any idea? Thanks!