Internal: Storage: GetServiceStatus
GetServiceStatus
Returns the status of SSH, StorageAPI and Stunnel Service in the Storage Server.
Authentication Methods
No authentication required
Output Parameter | Type | Description |
---|---|---|
Success | Boolean | |
Service | Service | Service object contains the name of the service and its availability status. |
CURL EXAMPLE
curl -v 'https://secure.nomadesk.com/storage/api.php?Task=GetServiceStatus'
RESPONSE
<Response>
<Status>1</Status>
<Message>Success</Message>
<Services>
<Service>
<Type>StorageApi</Type>
<Status>Available</Status>
</Service>
<Service>
<Type>SSH</Type>
<Status>Available</Status>
</Service>
<Service>
<Type>STunnel</Type>
<Status>Available</Status>
<HostName>ssl.nomadesk.com</HostName>
<Port>443</Port>
</Service>
</Services>
</Response>