Flight schedule change APIs AcknowledgeScheduleChange
Function Description# Through AcknowledgeScheduleChange API, you are able to remove a the schedule change message, which you do NOT want to get it from GetScheduleChange API. Error Code List# errorCode errorMsg Description 0 ok Request has been processed successfully. S001 System error System error. P001 xxx is illegal Request parameter is illegal, xxx will display request parameter B002 Partner is not exists Partner does not exist. B003 Illegal sign Illegal sign. B037 Order is not exist. Order does not exist. B048 Invalid buyer Buyer is invalid. B130 Message is not exist. Schedule change message does not exist.
Request Body Params application/json
{
"Authentication" : {
"partnerId" : "string" ,
"sign" : "string"
} ,
"data" : {
"messageId" : "string"
}
} Request Code Samples
curl --location 'https://api.pkfare.com/json/scheduleChange/acknowledge' \
--header 'Content-Type: application/json' \
--data '{
"Authentication": {
"partnerId": "string",
"sign": "string"
},
"data": {
"messageId": "string"
}
}' Responses application/json
Generate Code
{
"errorCode" : "0" ,
"errorMsg" : "ok"
} Modified at 2024-04-24 15:03:49