POST
/
extensions
curl --request POST \
  --url https://api.flyingraccoon.tech/extensions \
  --header 'Content-Type: multipart/form-data' \
  --header 'raccoon-secret-key: <api-key>'
{
  "extensionId": "ext_abcdef123456",
  "filename": "my_extension.zip"
}

Authorizations

raccoon-secret-key
string
header
required

Body

multipart/form-data
file
file
required

Response

200
application/json
Successful Response
extensionId
string
required

Unique identifier for the extension.

Example:

"ext_abcdef123456"

filename
string
required

Name of the extension file.

Example:

"my_extension.zip"