API ReferenceKnowledge Article
knowledgeArticle.create
Type: Mutation · Auth: Workspace-aware
Input
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| title | string | Yes | — | Title |
| topicTags | string[] | No | — | Topic tags |
| solutionFamily | string | No | — | Solution family |
| roleScope | string | No | — | Role scope |
| contentMarkdown | string | Yes | — | Content markdown |
| status | enum(draft, published, archived) | Yes | "draft" | Status |
| sourceReferenceIds | string[] | No | — | Source reference ids |
| revisionNumber | integer | Yes | 1 | Revision number |
| ownerUserId | string | No | — | ID of the associated owner user |
| workspaceId | string | No | — | ID of the associated workspace |
| visibilityMode | enum(global, workspace_local, shared) | Yes | "workspace_local" | Visibility mode |
Example
{
"title": "Example Title",
"topicTags": [],
"solutionFamily": "example",
"roleScope": "example",
"contentMarkdown": "example",
"status": "draft",
"revisionNumber": 1,
"visibilityMode": "global"
}