Replies: 2 comments 1 reply
-
This is a problem that the script has been running into for a while (see #277), and as far as is known right now, isn't linked specifically to how a reservation is booked.
To do this, yes, you would need to put your flights under reservations instead of your account. With accounts, these schedule flights over long periods, so there isn't a way to only check fares for certain flights that are scheduled with an account. So your config would need to look something like this: {
"check_fares": true,
"notification_urls": "pover://xxxxxxx",
"notification_level": 1,
"retrieval_interval": 6,
"reservations": [
{"confirmationNumber": "personal flight", "firstName": "xxxx", "lastName": "xxxx"},
{"confirmationNumber": "business flight", "firstName": "xxxx", "lastName": "xxxx", "check_fares": false}
] |
Beta Was this translation helpful? Give feedback.
-
is there any benefit of using account vs reservation |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
my current config is below. i have two flights scheduled. one i booked on southwest.com and the 2nd was book via my companies travel site. i have check_fares configured and it is working successfully and has provided lopwer fares for my book trip but it then gives an error - "Requesting error during fare check. Forbidden (403). Skipping..." I am thinking due to how the 2nd trip was booked and the possiblity that i have no control (outside of checking in) to this flight.
is there a way to add check_fares to my flight and not the 2nd? (possibly using the confirmation number under reservations?
{ "check_fares": true, "notification_urls": "pover://xxxxxxx", "notification_level": 1, "retrieval_interval": 6, "accounts": [ { "username": "xxxxxxxx", "password": "xxxxxxxx", "healthchecks_url": "https://hc-ping.com/xxxxxxx" } ], "reservations": []
Beta Was this translation helpful? Give feedback.
All reactions