Contents
Add Wiki Page
[Notice] Starting July 14, 2026, we are changing how we provide Wiki:
- New spaces: Wiki is not available.
- Existing spaces: Wiki is off by default for new projects. You can turn it on in project settings.
For details, see Important Notice: Discontinuing Wiki for New Spaces and Updating Default Settings for New Projects.
Wiki API endpoints still work. Discontinuing Wiki in the future will affect API integrations, and we’ll give you ample notice beforehand.
Adds new Wiki page.
Role
Administrator
Normal User
Method
POST
URL
/api/v2/wikis
Form parameters
Content-Type:application/x-www-form-urlencoded
| Parameter Name | Type | Description |
|---|---|---|
| projectId (Required) | Number | Project ID |
| name (Required) | String | Page Name |
| content (Required) | String | Content |
| mailNotify | Boolean | True make to notify by Email |
Response example
Status Line / Response Header
HTTP/1.1 201 CREATED
Content-Type:application/json;charset=utf-8
Location:https://xx.backlogtool.com/alias/wiki/1
Response Body
{
"id": 1,
"projectId": 1,
"name": "Home",
"content": "test",
"tags": [
{
"id": 12,
"name": "proceedings"
}
],
"attachments": [],
"sharedFiles": [],
"stars": [],
"createdUser": {
"id": 1,
"userId": "admin",
"name": "admin",
"roleType": 1,
"lang": "ja",
"nulabAccount": {
"nulabId": "Prm9ZD9DQD5snNWcSYSwZiQoA9WFBUEa2ySznrSnSQRhdC2X8G",
"name": "admin",
"uniqueId": "admin"
},
"mailAddress": "eguchi@nulab.example",
"lastLoginTime": "2022-09-01T06:35:39Z"
},
"created": "2012-07-23T06:09:48Z",
"updatedUser": {
"id": 1,
"userId": "admin",
"name": "admin",
"roleType": 1,
"lang": "ja",
"nulabAccount": {
"nulabId": "Prm9ZD9DQD5snNWcSYSwZiQoA9WFBUEa2ySznrSnSQRhdC2X8G",
"name": "admin",
"uniqueId": "admin"
},
"mailAddress": "eguchi@nulab.example",
"lastLoginTime": "2022-09-01T06:35:39Z"
},
"updated": "2012-07-23T06:09:48Z"
}