Skip to main content
POST
/
project
cURL
curl --request POST \
  --url http://loglybase.com/api/project \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "logo": "<string>"
}
'
{
  "id": 123,
  "code": "<string>",
  "slug": "<string>",
  "name": "<string>",
  "description": "<string>",
  "logo": "<string>",
  "customDomain": "<string>",
  "theme": "<string>",
  "primaryColor": "<string>",
  "fontFamily": "<string>",
  "fontSize": "<string>",
  "customCss": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
name
string
required

Display name of the project

description
string

Short description shown on the changelog page

URL of the project logo

Response

The new project response

id
integer<int64>

Unique identifier of the project

code
string

Internal project code

slug
string

Public slug used in subdomain URL

name
string

Display name of the project

description
string

Short description shown on the changelog page

URL of the project logo

customDomain
string

Custom domain connected to the project

theme
string

Visual theme of the changelog page (LIGHT, DARK, or SYSTEM)

primaryColor
string

Hex color used for highlights and accents

fontFamily
string

Font used on the changelog page

fontSize
string

Base font size used for content (SMALL, MEDIUM, LARGE)

customCss
string

Custom CSS applied to the public page

createdAt
string<date-time>

Timestamp when the project was created

updatedAt
string<date-time>

Timestamp when the project was last updated