curl --request GET \
--url https://api.wirespeed.com/users/api-keys \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"teamId": "<string>",
"userId": "<string>",
"expiration": "<string>",
"lastUsed": "<string>",
"role": "ADMIN",
"name": "<string>",
"createdAt": "<string>"
}
]
curl --request GET \
--url https://api.wirespeed.com/users/api-keys \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"teamId": "<string>",
"userId": "<string>",
"expiration": "<string>",
"lastUsed": "<string>",
"role": "ADMIN",
"name": "<string>",
"createdAt": "<string>"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object[]
.