Authentication
List Tokens
GET
/
auth
/
v1
/
tokens
curl --url https://try.flipt.io/auth/v1/tokens \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
{
"authentications": [
{
"createdAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"id": "<string>",
"metadata": {},
"method": "METHOD_NONE",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
authentications
object[]
requirednextPageToken
string
requiredWas this page helpful?
curl --url https://try.flipt.io/auth/v1/tokens \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
{
"authentications": [
{
"createdAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"id": "<string>",
"metadata": {},
"method": "METHOD_NONE",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>"
}