Get Account Information
POST
/account/informationGet user accoutn infromation. Response will contain information whether account is active, it's expiration data allowed stream formats etc
Request
Body Params application/json
username
string
required
password
string
required
Example
{
"username": "string",
"password": "string"
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object
required
user_info
object
required
server_info
object
required
error
null
required
Example
{
"data": {
"user_info": {
"username": "string",
"password": "string",
"message": "string",
"auth": 0,
"status": "string",
"exp_date": "string",
"is_trial": "string",
"active_cons": "string",
"created_at": "string",
"max_connections": "string",
"allowed_output_formats": [
"string"
]
},
"server_info": {
"url": "string",
"port": "string",
"https_port": "string",
"server_protocol": "string",
"rtmp_port": "string",
"timezone": "string",
"timestamp_now": 0,
"time_now": "string",
"process": true
}
},
"error": null
}
Last modified: 23 days ago