curl --request GET \
--url http://localhost:8080/api/v1/users \
--header 'Authorization: <api-key>'[
{
"attributes": {
"email": "<string>",
"name": "<string>"
},
"id": "<string>",
"type": "<string>"
}
]Get a list of all users
curl --request GET \
--url http://localhost:8080/api/v1/users \
--header 'Authorization: <api-key>'[
{
"attributes": {
"email": "<string>",
"name": "<string>"
},
"id": "<string>",
"type": "<string>"
}
]Was this page helpful?