API Unified Definition
The common definition used in all AppSeed products that includes an API Service
Last updated
The common definition used in all AppSeed products that includes an API Service
Last updated
POST api/users/register
Content-Type: application/json
{
"username":"test",
"password":"pass",
"email":"test@appseed.us"
}POST /api/users/login
Content-Type: application/json
{
"password":"pass",
"email":"test@appseed.us"
}POST api/users/logout
Content-Type: application/json
authorization: JWT_TOKEN (returned by Login request)
{
"token":"JWT_TOKEN"
}