Get Started
Studio API
- Introduction
- Streaming
- CMS
- OTT
- Monetization
- IAM
- Accounts
- Users
- Organizations
- Projects
- Integration
- Analytics
Content Delivery API
Deep dive
Accounts
Create account
CreateAccount
Creates an account in Motto platform.
POST
/
iam
/
accounts
/
v1
Copy
curl --request POST \
--url https://api.mottostreaming.com/iam/accounts/v1 \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}'
Copy
{
"account": {
"id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"verified": true,
"survey": "SURVEY_STATUS_UNSPECIFIED"
},
"token": "<string>"
}
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://api.mottostreaming.com/iam/accounts/v1 \
--header 'Content-Type: application/json' \
--data '{
"email": "<string>",
"password": "<string>",
"first_name": "<string>",
"last_name": "<string>"
}'
Copy
{
"account": {
"id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"verified": true,
"survey": "SURVEY_STATUS_UNSPECIFIED"
},
"token": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.