POST api/customers/accounts/devices/logout

Request Information

URI Parameters

None.

Body Parameters

LogOutAccountDeviceRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

HBusAnonymousId

globally unique identifier

None.

Fingerprint

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "7eee3f45-9136-4d20-b5c6-68c64d61f5c4",
  "HBusAnonymousId": "e938214c-4a42-44d6-aa54-9e45507961c6",
  "Fingerprint": "sample string 3"
}

application/xml, text/xml

Sample:
<LogOutAccountDeviceRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <Fingerprint>sample string 3</Fingerprint>
  <HBusAnonymousId>e938214c-4a42-44d6-aa54-9e45507961c6</HBusAnonymousId>
  <UserId>7eee3f45-9136-4d20-b5c6-68c64d61f5c4</UserId>
</LogOutAccountDeviceRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

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