GET
/
users
/
api-keys
curl --request GET \
  --url https://api.wirespeed.co/users/api-keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "teamId": "<string>",
    "userId": "<string>",
    "expiration": "<string>",
    "lastUsed": "<string>",
    "role": "ADMIN",
    "name": "<string>",
    "createdAt": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

The response is of type object[].