Available Methods
https://gcmsdk.azurewebsites.net/CheckOwas/{guid}/{owasaddress}
Query String Parameters
{guid}: String: API Key required for authentication
{owasaddress}: String: FQDN of Office Web App Server. Should be without https or path. For example: owas.domain.com
Example Request
curl – request GET \
--url 'https://gcmsdk.azurewebsites.net/CheckOwas/{guid}/owas.domain.com'
--include
OR
Powershell> Invoke-RestMethod -Url https://gcmsdk.azurewebsites.net/CheckOwas/{guid}/owas.domain.com
--url 'https://gcmsdk.azurewebsites.net/CheckOwas/{guid}/owas.domain.com'
--include
OR
Powershell> Invoke-RestMethod -Url https://gcmsdk.azurewebsites.net/CheckOwas/{guid}/owas.domain.com
Example Response
[
{
"OWASAddress": "owap.domain.com",
"Result": "True"
}
]
{
"OWASAddress": "owap.domain.com",
"Result": "True"
}
]