πŸ’‘Knowledge base

Best practices

Update existing knowledge base article

  1. Search positioning

    • Find the target article by using list plus search with the title or keywords.

    • Confirm that only a single record is matched and obtain id information.

  2. Conditional update

    • Call the update API (PUT / PATCH) and include the next version identification condition.

GET https://{API_DOMAIN}/api/v1/kb
curl -X GET
    -H "Content-Type: application/json"
    '{"name": "vip"}'
    https://{API_HOST}/api/v1/kb

URL Parameters

Name
Type
Required
Instructions
Example

page

integer

No

Page number (starting from 1)

page=2

search

string

No

Filter KB name/content by keyword

search=security

is_public

integer

No

Is the article public

is_public=1

Response

PROPERTY

TYPE

DESCRIPTION

data

Array of objects

Article data array

meta

Object

Pagination data

Get single record

URL Parameters

PARAMETER

REQUIRED

DEFAULT

TYPE

DESCRIPTION

id

true

NULL

Number

Contact tag system ID

Response

PROPERTY

TYPE

DESCRIPTION

data

Object

Knowledge base article data

Create

Form Data

Name
Type
Required
Description
Example

subject

string

Yes

Article Title

"How to set up a product"

content

string

Yes

Article content

"About the product...."

is_public

boolean

No

Whether the article is public

false

Update

Last updated