Skip to content

Rest API

Reorder help center FAQs

POST
/api/v1/help-center/faqs/reorder

Set the sort position of several FAQs at once.

Notes

  • Only the FAQs you list are touched; the rest keep their order
  • Changes only reach visitors after POST /api/v1/help-center/publish
x-api-key
required
string

Your API key from account settings.

x-user-email
required
string

The email address of your user.

x-account-id
required
string

The ID of your account. You can find this in the account settings.

x-website-id
required
string

The ID of the workspace you want to use.

object
items
required
Array<object>
>= 1 items
object
faqId
required
string
order
required
number
Example
{
"items": [
{
"faqId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"order": 0
}
]
}

The FAQs were reordered.

object
success
boolean

Bad request - missing websiteId, or an empty items list.

Unauthorized - invalid API key.