POST api/bifrost/Azure/LoginLog

Request Information

URI Parameters

None.

Body Parameters

LogRequest
NameDescriptionTypeAdditional information
AccountId

string

None.

StartDate

date

None.

EndDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "AccountId": "sample string 1",
  "StartDate": "2025-12-15T22:07:58.0815135+00:00",
  "EndDate": "2025-12-15T22:07:58.0815135+00:00"
}

application/xml, text/xml

Sample:
<LogRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.LogRequest">
  <AccountId>sample string 1</AccountId>
  <EndDate>2025-12-15T22:07:58.0815135+00:00</EndDate>
  <StartDate>2025-12-15T22:07:58.0815135+00:00</StartDate>
</LogRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

LogResponse
NameDescriptionTypeAdditional information
Logs

Collection of LogModel

None.

IsSuccess

boolean

None.

Message

string

None.

guid

string

None.

PNR

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Logs": [
    {
      "UserName": "sample string 1",
      "Email": "sample string 2",
      "LoginTime": "2025-12-15T22:07:58.0815135+00:00",
      "LogOutTime": "2025-12-15T22:07:58.0815135+00:00",
      "AccountId": "sample string 5"
    },
    {
      "UserName": "sample string 1",
      "Email": "sample string 2",
      "LoginTime": "2025-12-15T22:07:58.0815135+00:00",
      "LogOutTime": "2025-12-15T22:07:58.0815135+00:00",
      "AccountId": "sample string 5"
    }
  ],
  "IsSuccess": true,
  "Message": "sample string 2",
  "guid": "sample string 3",
  "PNR": "sample string 4"
}

application/xml, text/xml

Sample:
<LogResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.LogRequest">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">true</IsSuccess>
  <Message xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 2</Message>
  <PNR xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 4</PNR>
  <guid xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model">sample string 3</guid>
  <Logs>
    <LogModel>
      <AccountId>sample string 5</AccountId>
      <Email>sample string 2</Email>
      <LogOutTime>2025-12-15T22:07:58.0815135+00:00</LogOutTime>
      <LoginTime>2025-12-15T22:07:58.0815135+00:00</LoginTime>
      <UserName>sample string 1</UserName>
    </LogModel>
    <LogModel>
      <AccountId>sample string 5</AccountId>
      <Email>sample string 2</Email>
      <LogOutTime>2025-12-15T22:07:58.0815135+00:00</LogOutTime>
      <LoginTime>2025-12-15T22:07:58.0815135+00:00</LoginTime>
      <UserName>sample string 1</UserName>
    </LogModel>
  </Logs>
</LogResponse>