tokens_verify
Creates, updates, deletes, gets or lists a tokens_verify resource.
Overview
| Name | tokens_verify |
| Type | Resource |
| Id | cloudflare.user.tokens_verify |
Fields
The following fields are returned by SELECT queries:
- list
Verify Token response
| Name | Datatype | Description |
|---|---|---|
id | string | Token identifier tag. (example: ed17574386854bf78a67040be0a770b0) |
expires_on | string (date-time) | The expiration time on or after which the JWT MUST NOT be accepted for processing. (example: 2020-01-01T00:00:00Z) |
not_before | string (date-time) | The time before which the token MUST NOT be accepted for processing. (example: 2018-07-01T05:20:00Z) |
status | string | Status of the token. (active, disabled, expired) (example: active, x-stainless-terraform-configurability: computed_optional) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | Test whether a token works. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|
SELECT examples
- list
Test whether a token works.
SELECT
id,
expires_on,
not_before,
status
FROM cloudflare.user.tokens_verify
;