List traveller journeys
List all traveller journeys
Authorizations
AuthorizationstringRequired
Token-based authentication with required prefix "Token"
Query parameters
journeystringOptional
Journey id
orderingstringOptional
Which field to use when ordering the results.
pageintegerOptional
A page number within the paginated result set.
page_sizeintegerOptional
Number of results to return per page.
searchstringOptional
A search term.
Responses
200Success
application/json
401
Unauthorized
get
v1/traveller-journeys/Request samples
import requests
response = requests.get(
"https://journeys-api.50skills.app/v1/traveller-journeys/?journey=6mK7AyZV",
)
print(response.json())
fetch("https://journeys-api.50skills.app/v1/traveller-journeys/?journey=6mK7AyZV")
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error)); Response samples
Last updated