POST api/Account/Logout
Request Information
URI Parameters
None.
Body Parameters
LoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | globally unique identifier |
None. |
|
| string |
None. |
||
| ParentID | globally unique identifier |
None. |
|
| FcmToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientID": "92b8c1f4-d132-4302-9ca2-c822feaaf977",
"Email": "sample string 2",
"ParentID": "b583fa99-a4d6-44e3-b4cf-87b77b7cba7a",
"FcmToken": "sample string 4"
}
application/xml, text/xml
Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootParent.Service.Models"> <ClientID>92b8c1f4-d132-4302-9ca2-c822feaaf977</ClientID> <Email>sample string 2</Email> <FcmToken>sample string 4</FcmToken> <ParentID>b583fa99-a4d6-44e3-b4cf-87b77b7cba7a</ParentID> </LoginModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Message | Collection of string |
None. |
|
| ResponseCodes | Collection of integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| Value | string |
None. |
|
| RecordOn | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Message": [
"sample string 1",
"sample string 2"
],
"ResponseCodes": [
1,
2
],
"Id": "14ee9beb-9b60-4231-b1b6-c0f499638195",
"Value": "sample string 3",
"RecordOn": "2026-06-06T03:34:59.0327466+04:00"
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity">
<Id>14ee9beb-9b60-4231-b1b6-c0f499638195</Id>
<IsValid>true</IsValid>
<Message xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Message>
<RecordOn>2026-06-06T03:34:59.0327466+04:00</RecordOn>
<ResponseCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ResponseCodes>
<Value>sample string 3</Value>
</Result>