Authentication
List Tokens
GET
/
auth
/
v1
/
tokens
Copy
Ask AI
curl --url https://try.flipt.io/auth/v1/tokens \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Copy
Ask AI
{
"authentications": [
{
"id": "<string>",
"method": "METHOD_NONE",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"metadata": {}
}
],
"nextPageToken": "<string>"
}
Copy
Ask AI
curl --url https://try.flipt.io/auth/v1/tokens \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --url https://try.flipt.io/auth/v1/tokens \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Copy
Ask AI
{
"authentications": [
{
"id": "<string>",
"method": "METHOD_NONE",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"metadata": {}
}
],
"nextPageToken": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.