GET api/me/services
Gives you the status information of all your services
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Service status information
Collection of ServiceStatusDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Service type ID |
integer |
None. |
| Name |
Name of service |
string |
None. |
| Status |
Service status |
ServiceStatus |
None. |
| StatusDescription |
Service status description |
string |
None. |
| Since |
When the service began |
date |
None. |
| Until |
When the service stops |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"Status": 0,
"StatusDescription": "None",
"Since": "2025-12-16T03:27:48.3372565+00:00",
"Until": "2025-12-16T03:27:48.3372565+00:00"
},
{
"ID": 1,
"Name": "sample string 2",
"Status": 0,
"StatusDescription": "None",
"Since": "2025-12-16T03:27:48.3372565+00:00",
"Until": "2025-12-16T03:27:48.3372565+00:00"
}
]