Get Started
Studio API
- Introduction
- Streaming
- CMS
- OTT
- Monetization
- IAM
- Accounts
- Users
- Organizations
- Projects
- Integration
- Analytics
Content Delivery API
Deep dive
Auth
Login
Login
This method performs login into platform account.
POST
/
iam
/
auth
/
v1
/
login
curl --request POST \
--url https://api.mottostreaming.com/iam/auth/v1/login \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>"
}'
{
"token": "<string>"
}
Body
application/json
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.mottostreaming.com/iam/auth/v1/login \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>"
}'
{
"token": "<string>"
}