POST api/Operator/Logout

Request Information

URI Parameters

None.

Body Parameters

Operator_LogoutRequest
NameDescriptionTypeAdditional information
DeviceUniqueId

string

None.

OperatorInformation

Operator_Information

None.

Request Formats

application/json, text/json

Sample:
{
  "DeviceUniqueId": "sample string 1",
  "OperatorInformation": {
    "Id": 1,
    "CompleteName": "sample string 2",
    "Code": "sample string 3",
    "IsCompliantCheckEnabled": true,
    "IsLocationEnabled": true,
    "IsMovementingEnabled": true,
    "IsPickingEnabled": true,
    "IsVehicleLoadEnabled": true,
    "IsVehicleUnloadEnabled": true,
    "IsDeliverySignatureEnabled": true,
    "IsInventoryEnabled": true,
    "IsInventoryCdcEnabled": true
  }
}

application/xml, text/xml

Sample:
<Operator_LogoutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PharmatoolsWarehouseAPI.Models">
  <DeviceUniqueId>sample string 1</DeviceUniqueId>
  <OperatorInformation>
    <Code>sample string 3</Code>
    <CompleteName>sample string 2</CompleteName>
    <Id>1</Id>
    <IsCompliantCheckEnabled>true</IsCompliantCheckEnabled>
    <IsDeliverySignatureEnabled>true</IsDeliverySignatureEnabled>
    <IsInventoryCdcEnabled>true</IsInventoryCdcEnabled>
    <IsInventoryEnabled>true</IsInventoryEnabled>
    <IsLocationEnabled>true</IsLocationEnabled>
    <IsMovementingEnabled>true</IsMovementingEnabled>
    <IsPickingEnabled>true</IsPickingEnabled>
    <IsVehicleLoadEnabled>true</IsVehicleLoadEnabled>
    <IsVehicleUnloadEnabled>true</IsVehicleUnloadEnabled>
  </OperatorInformation>
</Operator_LogoutRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>