cURL
curl --request POST \ --url https://app.replyify.ai/api/api-keys \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
{ "id": "<string>", "name": "<string>", "key": "<string>", "created_at": "<string>" }
Generate a new API key for the workspace
curl -X POST "https://app.replyify.ai/api/api-keys" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Production Key" }'
{ "id": "uuid", "name": "Production Key", "key": "rfy_a1b2c3d4e5f6...", "created_at": "2025-01-27T12:00:00Z" }