POST v1/ItineraryManagement/GetAuditLog
Request Information
URI Parameters
None.
Body Parameters
GetDetailsByItineraryId| Name | Description | Type | Additional information |
|---|---|---|---|
| ItineraryId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ItineraryId": "sample string 1"
}
application/xml, text/xml
Sample:
<GetDetailsByItineraryId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.ItineraryManagement"> <ItineraryId>sample string 1</ItineraryId> </GetDetailsByItineraryId>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AuditResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| auditLogs | Collection of AuditLog |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| guid | string |
None. |
|
| PNR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"auditLogs": [
{
"ItineraryId": 1,
"Changes": "sample string 2",
"UpdatedOn": "2026-04-02T20:49:53.3977219+00:00",
"UpdatedBy": 4,
"UserName": "sample string 5"
},
{
"ItineraryId": 1,
"Changes": "sample string 2",
"UpdatedOn": "2026-04-02T20:49:53.3977219+00:00",
"UpdatedBy": 4,
"UserName": "sample string 5"
}
],
"IsSuccess": true,
"Message": "sample string 2",
"guid": "sample string 3",
"PNR": "sample string 4"
}
application/xml, text/xml
Sample:
<AuditResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model.ItineraryManagement">
<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>
<auditLogs>
<AuditLog>
<Changes>sample string 2</Changes>
<ItineraryId>1</ItineraryId>
<UpdatedBy>4</UpdatedBy>
<UpdatedOn>2026-04-02T20:49:53.3977219+00:00</UpdatedOn>
<UserName>sample string 5</UserName>
</AuditLog>
<AuditLog>
<Changes>sample string 2</Changes>
<ItineraryId>1</ItineraryId>
<UpdatedBy>4</UpdatedBy>
<UpdatedOn>2026-04-02T20:49:53.3977219+00:00</UpdatedOn>
<UserName>sample string 5</UserName>
</AuditLog>
</auditLogs>
</AuditResponse>