Function Description# Using the TicketingRequest API, users can send ticket issuance reminders for flight orders. 1.
You can only prompt ticket issuance for flight orders. It does not support ticket issuance reminders for ancillary orders.
2.
It supports simultaneous ticket issuance reminders for multiple orders. The same order can only be prompted once within a 10-minute period.
Target Reader# The RequestTicketing interface documentation is intended for web developers, maintenance and managers with some web development skills, an understanding of one of the major development languages such as Java, Python, ASP.NET, PHP, Node.js, and a basic knowledge of HTTP network protocols. URLs# Error Code List# erroCode erroMsg Description 0 ok Request has been processed successfully. S001 System error System error S002 timeout Request timeout P001 - Parameter is illegal B037 Order is not exists. Order is not exists. B179 Duplicate ticketing request within 10 minutes. Duplicate ticketing request for the same order within 10 minutes. B180 The order status is not issuing. Only Issuing order can be used in this API. B181 The ticketing reminder list contains more than 100 orders. The ticketing reminder list contains more than 100 orders.
Request Body Params application/json
{
"authentication" : {
"partnerId" : "{{partnerId}}" ,
"sign" : "{{sign}}"
} ,
"data" : {
"issuingOrdersPush" : [
"cillum dolore Ut"
]
}
} Request Code Samples
curl --location 'https://api.pkfare.com/json/requestTicketing' \
--header 'Content-Type: application/json' \
--data '{
"authentication": {
"partnerId": "",
"sign": ""
},
"data": {
"issuingOrdersPush": [
"cillum dolore Ut"
]
}
}' Responses application/json
Generate Code
{
"errorCode" : "0" ,
"errorMsg" : "OK" ,
"data" : [ ]
}
Modified at 2026-08-13 06:38:24