validate_key
Test if your IssueBadge API credentials are working correctly by validating authentication keys before issuing badges or certificates.
Instructions
Validate an IssueBadge API key for authentication. Use this to test if your API credentials are working correctly.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | The API key to validate (usually starts with a number and pipe, e.g., "1|abc123...") |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "The API key to validate (usually starts with a number and pipe, e.g., \"1|abc123...\")",
"type": "string"
}
},
"required": [
"api_key"
],
"type": "object"
}