Skip to main content
POST
/
v1
/
certificates
Upload Certificate
curl --request POST \
  --url https://api.anchorbrowser.io/v1/certificates \
  --header 'Content-Type: multipart/form-data' \
  --header 'anchor-api-key: <api-key>' \
  --form 'name=<string>' \
  --form file='@example-file'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.anchorbrowser.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Body

multipart/form-data
name
string
required

Unique identifier for the certificate (alphanumeric, hyphens, underscores only, 1-255 characters)

Pattern: ^[a-zA-Z0-9\-_]+$
file
file
required

Certificate file (.crt, .pem, .cer, or .der format)

description
string

Optional description of the certificate (max 1000 characters)

Maximum string length: 1000

Response

Certificate uploaded successfully

data
object