Account
Get 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",
"password": "string"
}
Request samples
curl --location --request POST '/account/information' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"password": "string"
}'
Responses
application/json {
"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
}
Modified at 2024-12-24 13:57:33