Skip to main content
POST
/
v1
/
wikis
Create Wiki
curl --request POST \
  --url https://almanac-backend-83vc.onrender.com/v1/wikis \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "",
  "organization_id": "<string>",
  "slug": "<string>"
}
'
{
  "organization_id": "<string>",
  "slug": "<string>",
  "title": "<string>",
  "wiki_id": "<string>",
  "description": ""
}

Authorizations

Authorization
string
header
required

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

Headers

authorization
string | null

Body

application/json
title
string
required
Minimum string length: 1
description
string
default:""
organization_id
string | null
slug
string | null

Response

Successful Response

organization_id
string
required
slug
string
required
title
string
required
wiki_id
string
required
description
string
default:""