GET
/
api
/
tokens
curl --request GET \
  --url https://app.saasfy.dev/api/tokens \
  --header 'Authorization: Bearer <token>'
{
  "tokens": [
    {
      "created_at": "<string>",
      "expires": "<string>",
      "hashed": "<string>",
      "id": "<string>",
      "masked": "<string>",
      "name": "<string>",
      "user": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Token response
tokens
object[]