-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: adding more text and a getting started guide (#10)
About #8
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Travelling by train across Europe usually requires a train ticket. | ||
|
||
With this API you will be able to search, book and pay for a train | ||
ticket and enjoy watching the landscapes by the window. | ||
|
||
Below is the set of API calls you will need to do to get your ticket. | ||
|
||
| Description | API | Repeat? | | ||
|-----------------------------------------------:|:-----------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------| | ||
| Search for train stations | [`GET /stations`](https://bump.sh/bump-examples/doc/train-travel-api/operation/operation-get-stations) | Call this operation as many times as needed to find your origin and destination train stations | | ||
| Lookup train schedules and ticket availability | [`GET /trips`](https://bump.sh/bump-examples/doc/train-travel-api/operation/operation-get-trips) | As many calls as necessary, you will provide both the origin and destination station IDs and a traveling date | | ||
| Make your booking | [`POST /bookings`](https://bump.sh/bump-examples/doc/train-travel-api/operation/operation-create-booking) | Usually one booking is enough. But if you want to organize your next holidays you may book as many tickets as you like | | ||
| Issue your ticket by paying | [`POST /bookings/{bookingId}/payment`](https://bump.sh/bump-examples/doc/train-travel-api/operation/operation-create-booking-payment) | One payment per booking is enough to receive your ticket | | ||
|
||
Happy traveling! | ||
|
||
> info | ||
> You can optionally [subscribe to a webhook](https://bump.sh/bump-examples/doc/train-travel-api/operation/operation-new-booking) to receive updates about your bookings. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,10 @@ info: | |
name: Train Support | ||
url: https://example.com/support | ||
email: [email protected] | ||
x-topics: | ||
- title: Getting started | ||
content: | ||
$ref: ./docs/getting-started.md | ||
servers: | ||
- url: https://api.example.com | ||
description: Production | ||
|
@@ -21,7 +25,12 @@ tags: | |
- name: Bookings | ||
description: Create and manage bookings for train trips, including passenger details and optional extras. | ||
- name: Payments | ||
description: Pay for bookings using a card or bank account, and view payment status and history. | ||
description: | | ||
Pay for bookings using a card or bank account, and view payment | ||
status and history. | ||
> warn | ||
> Bookings usually expire within 1 hour so you'll need to make your payment before the expiry date | ||
paths: | ||
/stations: | ||
get: | ||
|