check_api_token
Verify API token validity and expiration status to ensure secure access to ArchiveBox web archiving functionality.
Instructions
Validate an API token to make sure it's valid and non-expired.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token_param | No | Bearer token for authentication |
Input Schema (JSON Schema)
{
"properties": {
"token_param": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Bearer token for authentication"
}
},
"type": "object"
}