curl --request POST \
--url http://localhost:3000/api/canary/authentication/api-key/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My API Key",
"expiresIn": 3600,
"prefix": "pk_live_",
"metadata": {
"env": "production"
}
}
'