API Keys
Create a new API key
Generate a new API key pair (clientId + clientSecret) for the authenticated subscriber. The clientSecret is only returned once on creation.
post/v1/api-keys
Request body
Example request
{
"env": "api"
}Response
API key created successfully. The clientSecret is only returned once.
Example response
{
"id": "e63d04d0-cfd4-46ad-9186-20ee31a8563b",
"clientId": "pk_lori_client_12345678deadbeef",
"clientSecret": "sk_lori_secret_abcdefghijklmnop...",
"env": "production",
"createdAt": "2024-01-15T10:00:00.000Z"
}