List users
Get a list of all system users
List all users
Authorizations
AuthorizationstringRequired
Token-based authentication with required prefix "Token"
Query parameters
orderingstringOptional
Which field to use when ordering the results.
searchstringOptional
A search term.
Responses
200Success
application/json
401
Unauthorized
get
v1/users/import requests
response = requests.get(
"https://journeys-api.50skills.app/v1/users/",
)
print(response.json()) fetch("https://journeys-api.50skills.app/v1/users/")
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error)); Response samples
Last updated