Create access and refresh tokens
Create access and refresh tokens, from email and password
POST
/v1/auth/accessToken/email
curl \
--request POST 'https://openapi.meltingspot.io/v1/auth/accessToken/email' \
--header "Content-Type: application/json" \
--data '{"email":"string","password":"string"}'
Request examples
{
"email": "string",
"password": "string"
}
Response examples (201)
{
"accessToken": {
"token": "string",
"expiresAt": 42
},
"refreshToken": {
"token": "string",
"expiresAt": 42
}
}