FaqArticles
Create FaqArticle
Create a new FaqArticle record.
POST
Create FaqArticle
A FaqArticle is a frequently asked question and answer published in the members portal, with optional audience restrictions for customers, plans, and teams; location-network visibility is controlled by the viewing location’s FAQ data-visibility setting. Active, customer-eligible articles are also semantically matched to answer questions through the AI chat, WhatsApp, and voice channels. The same matcher can automatically answer Help Desk messages and customer comments when OpenAI Help Desk automation is enabled; matched replies include a link to the source FAQ. FAQ content changes refresh the embeddings used for these AI answers.
Authentication
This endpoint requires OAuth2 authentication. Include a valid bearer token in the
Authorization header.
The authenticated user must be a full unrestricted administrator or have the FaqArticle-Create role.Request Body
Required Fields
integer
required
ID of the location that owns this FAQ article; the viewing location’s FAQ data-visibility setting controls where it can be displayed across a location network..
string
required
Required question or heading shown for this FAQ article..
integer
required
Numeric position used to order articles within a group; create and update handlers normalize stored positions after changes..
Optional Fields
string
Optional short plain-text or HTML summary of the answer, used with the article content in FAQ search indexing..
string
Optional full answer displayed in the members portal; HTML content is supported and is included in FAQ search indexing..
string
URL of a new file to upload as the image.
boolean
Set to true to remove the current image file.
string
URL of a new file to upload as the large image.
boolean
Set to true to remove the current large image file.
boolean
Whether the article is active and therefore eligible to appear in the members portal, subject to its audience restrictions..
string
Optional group or category name used to organize FAQ articles; portal lists are ordered by group first..
boolean
Whether the article is marked to be shown on the members portal home page..
boolean
Whether the article is restricted to contacts, meaning customers without an active contract; this restriction is cumulative with all other audience restrictions..
boolean
Whether the article is restricted to members, meaning customers with an active contract; this restriction is cumulative with all other audience restrictions..
integer[]
List of plan IDs whose active members may view this article; an empty list does not restrict access, and this restriction is cumulative with the other audience restrictions..
integer[]
List of customer IDs who may view this article; an empty list does not restrict access, and this restriction is cumulative with the other audience restrictions..
integer[]
List of team IDs whose customers may view this article; an empty list does not restrict access, and this restriction is cumulative with the other audience restrictions..
Code Examples
Response
200
integer
HTTP status code.
200 on success.string
A human-readable message confirming the creation.
object
Contains the
Id of the newly created record.boolean
true if the faqarticle was created successfully.array
null on success.Example Response
400
string
A summary of the validation error(s), in the format
PropertyName: error message.any
null on validation failure.object[]
Array of validation errors.
boolean
false when the request fails validation.Example Response