set-api-key
Configure the Payman API key for authentication to access Payman AI's APIs, enabling operations like creating payees, sending payments, and checking balances.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | Yes | The Payman API key to use for authentication |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKey": {
"description": "The Payman API key to use for authentication",
"type": "string"
}
},
"required": [
"apiKey"
],
"type": "object"
}