3.3 Hasura Auth API + Postman collection

Ankur Pandey
2 min readJun 28, 2017

--

Hasura Auth API provide support for:
1.Sign Up
2.Log in
3.Log out
4.User account info

SIGNUP
Method :POST
URL : https://auth.cockerel94.hasura-app.io/signup
Header : Content-type , application/json

SIGNIN
Method : POST
URL : https://auth.<project-name>.hasura-app.io/login
Header : Content-type , application/json

Method :GET
URL: https://auth.<project-name>.hasura-app.io/user/account/info
Header : Autherization , Bearer

LOGOUT
Method : GET
URL : https://auth.<project-name>.hasura-app.io/user/logout
Header : Autherization , Bearer

Sample Auth API queries made via Postman:

User sign up
User login
User account info
User log out

--

--