# User-defined timeout settings

Note: Currently, TimeoutSetting is only supported for Price Search, Price Confirm, and Book Confirm interfaces.

  • Different customers may have different requirements for timeout setting. DidaAPI now supports specifying your timeout requirements in the request through the TimeoutSetting field. After receiving your request, the Dida server will try to return a Response within the timeout period you requested. For cases regarding the TimeoutSetting field, please refer to the following. If you have any other questions about the TimeoutSetting field, please contact your dedicated API account manager.

  • Please note that the default unit for TimeoutSetting is milliseconds, not seconds.






















 


{
    "Header": {
        "ClientID": "DidaApiTestID",
        "LicenseKey": "TestKey"
    },
    "HotelIDList": [
        512
    ],
    "CheckInDate": "2023-08-01",
    "CheckOutDate": "2023-08-02",
    "IsRealTime": {
        "Value": true,
        "RoomCount": 1
    },
    "RealTimeOccupancy": {
        "AdultCount": 2,
        "ChildCount": 0,
        "ChildAgeDetails": []
    },
    "Currency": "USD",
    "Nationality": "CN",
	"TimeoutSetting": 10000
}

If the TimeoutSetting is set for an API request, the API response will definitely return AuditData information (click AuditData for detail of AuditData parameters).








 



{
	"AuditData": {
		"ProcessTime": 3649,
		"ResponseTime": "2024-10-23T14:04:01.567+08:00",
		"RequestTime": "2024-10-23T14:03:57.918+08:00",
		"SessionID": "bf397fde-7010-4e42-bf13-fed072e9c929",
		"RequestClientIP": "192.168.6.18",
		"TimeoutSetting": 10000
	}
}