Get all services
GET/api/v1/services/
Returns the list of services of an account.
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
- ServiceTemplateEnum
-
DEFAULT
- Default -
LIVE
- Live -
VOD
- Vod ]
account uuidrequired
A user account.
certificate uuid
cname stringrequired
description stringnullable
Some useful description
Possible values: <= 255 characters
enable_extended_statistics boolean
id uuidrequired
modified date-timerequired
name stringrequired
A service name.
Possible values: <= 255 characters
, Value must match regular expression ^[a-zA-Z0-9_\-\s]*$
read_only booleanrequired
Is a service read only?
service_template
object
nullable
oneOf
string
Possible values: [DEFAULT
, LIVE
, VOD
]
service_uid stringrequired
[
{
"account": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"certificate": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"cname": "string",
"description": "string",
"enable_extended_statistics": true,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"modified": "2024-07-29T15:51:28.071Z",
"name": "string",
"read_only": true,
"service_template": "DEFAULT",
"service_uid": "string"
}
]
Loading...