Skip to main content
POST
/
api-keys
/
{projectId}
Create a new API key
curl --request POST \
  --url http://localhost:3000/api-keys/{projectId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "environmentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "expiresAt": "2023-11-07T05:31:56Z",
  "metadata": {}
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectId
string
required

Body

application/json
name
string
required
Minimum string length: 3
environmentId
string<uuid>
required
expiresAt
string<date-time>
metadata
object

Response

200 - application/json

Default Response

The response is of type object.