Run in Apifox
Calling reissueRequest API to apply for the change of the order. The quotation result will be notified through orderChangeInforming API. Calling ticketing API to confirm reissue.
Request Body Params application/json
{
"authentication" : {
"sign" : "{{sign}}" ,
"timestamp" : "{{timestamp}}"
} ,
"tktOrderNo" : "17982000496513024" ,
"originalSegments" : [
{
"carrier" : "FD" ,
"flightNo" : "2271" ,
"depTime" : "2024-11-17T03:18"
}
] ,
"newLegs" : [
{
"carrier" : "FD" ,
"flightNo" : "2271" ,
"depAirport" : "SIN" ,
"depTime" : "2024-11-17T03:18" ,
"arrAirport" : "BKK" ,
"arrTime" : "2024-11-18T05:10" ,
"RBD" : ""
}
] ,
"passengers" : [
{
"paxId" : "1" ,
"name" : "DUOAF/JCVIU" ,
"birthday" : "1974-01-25" ,
"gender" : "M"
}
] ,
"cabin" : "" ,
"changeReason" : "3" ,
"remarks" : "测试" ,
"fileData" : [ ]
}
Request Code Samples
curl --location --request POST 'https://flight-test.flightroutes24.com/api/new/reissueRequest.do' \
--header 'Accept-Encoding;' \
--header 'appKey;' \
--header 'content-Type: application/json' \
--data-raw '{
"authentication": {
"sign": "",
"timestamp": ""
},
"tktOrderNo": "17982000496513024",
"originalSegments": [
{
"carrier": "FD",
"flightNo": "2271",
"depTime": "2024-11-17T03:18"
}
],
"newLegs": [
{
"carrier": "FD",
"flightNo": "2271",
"depAirport": "SIN",
"depTime": "2024-11-17T03:18",
"arrAirport": "BKK",
"arrTime": "2024-11-18T05:10",
"RBD": ""
}
],
"passengers": [
{
"paxId": "1",
"name": "DUOAF/JCVIU",
"birthday": "1974-01-25",
"gender": "M"
}
],
"cabin": "",
"changeReason": "3",
"remarks": "测试",
"fileData": []
}'
Responses application/json Generate Code
{
"traceId" : "NEWAPI24093012243539507741" ,
"code" : "000000" ,
"message" : "ok" ,
"processingTime" : 2856 ,
"data" : {
"changeOrderNo" : "17982004295962624" ,
"tktOrderNo" : "17982000496513024" ,
"changeOrderStatus" : "改期待审核"
}
}
Modified at 2025-04-17 06:24:00