POST api/v1/service/thirdparty/logout
Register a user logging out on an Azure instance
Request Information
URI Parameters
None.
Body Parameters
ServiceLogoutBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
None. |
|
| Request | ServiceLogoutRequestModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "170200123 - sample only, user your ID",
"Key": "467512342123 - sample only, user your Key"
},
"Request": {
"LogoutDate": "2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)",
"HostName": "AZ-W2-1A-DEV-1",
"InstanceId": "free form - should match instance id",
"Protocol": "PCoIP",
"ServiceProvider": "Teradici"
}
}
application/xml, text/xml
Sample:
<ServiceLogoutBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Authentication>
<Id>170200123 - sample only, user your ID</Id>
<Key>467512342123 - sample only, user your Key</Key>
</Authentication>
<Request>
<HostName>AZ-W2-1A-DEV-1</HostName>
<InstanceId>free form - should match instance id</InstanceId>
<Protocol>PCoIP</Protocol>
<ServiceProvider>Teradici</ServiceProvider>
<LogoutDate>2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)</LogoutDate>
</Request>
</ServiceLogoutBindingModel>
Response Information
Resource Description
ServiceOutgoingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | MessageModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": {
"Code": "sample string 1",
"Description": "sample string 2"
}
}
application/xml, text/xml
Sample:
<ServiceOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
<Message>
<Code>sample string 1</Code>
<Description>sample string 2</Description>
</Message>
</ServiceOutgoingModel>