Create a knowledge base collection
package main
import ( "fmt" "strings" "net/http" "io")
func main() {
url := "https://api.ai.wpengine.com/v1/kb/collections"
payload := strings.NewReader("{ \"name\": \"Product documentation\", \"description\": \"Product documentation, API reference guides, and release changelogs.\", \"set_primary\": true, \"metadata\": {} }")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>") req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close() body, _ := io.ReadAll(res.Body)
fmt.Println(res) fmt.Println(string(body))
}const url = 'https://api.ai.wpengine.com/v1/kb/collections';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"name":"Product documentation","description":"Product documentation, API reference guides, and release changelogs.","set_primary":true,"metadata":{}}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}<?php
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', 'https://api.ai.wpengine.com/v1/kb/collections', [ 'body' => '{ "name": "Product documentation", "description": "Product documentation, API reference guides, and release changelogs.", "set_primary": true, "metadata": {} }', 'headers' => [ 'Authorization' => 'Bearer <token>', 'Content-Type' => 'application/json', ],]);
echo $response->getBody();curl --request POST \ --url https://api.ai.wpengine.com/v1/kb/collections \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "Product documentation", "description": "Product documentation, API reference guides, and release changelogs.", "set_primary": true, "metadata": {} }'Creates a new collection scoped to the caller’s project. The collection name must be unique within the project, non-empty, at most 255 characters, and free of control characters. Requires a valid WP Engine bearer token.
Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”object
Human-readable collection name. Must be non-empty (after trimming surrounding whitespace), at most 255 characters, and free of control characters. Must be unique within the project.
Example
Product documentationDeprecated. Not used by the LLM search tool.
Example
Product documentation, API reference guides, and release changelogs.When true and the caller is site-authenticated, the new collection is also set as the site’s primary KB collection in the same request.
Optional structured metadata bag populated by the producer plugin during collection sync. The gateway consumes selected keys when composing the description of this collection’s search tool. Must be a JSON object no larger than 64 KB; any other JSON type (array, string, number, boolean, null) is rejected with 400. Omit to store as SQL NULL.
object
Responses
Section titled “Responses”The created collection
object
Unique identifier for the collection.
The project the collection belongs to.
Human-readable collection name.
Deprecated. Not used by the LLM search tool.
When the collection was created (UTC).
When the collection was last updated (UTC).
Structured metadata bag populated by the producer plugin during collection sync. Omitted from the response when the collection has no metadata set.
object
Example
{ "name": "Product documentation", "description": "Product documentation, API reference guides, and release changelogs."}Invalid request body or parameters
object
object
Correlation ID for this request, matching the X-Request-ID response header — a 32-character trace ID behind the load balancer, otherwise a UUID. Quote it in support reports.
Example
{ "error": { "type": "invalid_request_error", "request_id": "80f1e2c3a4b5c6d7e8f9a0b1c2d3e4f5" }}Missing or invalid bearer token
object
object
Correlation ID for this request, matching the X-Request-ID response header — a 32-character trace ID behind the load balancer, otherwise a UUID. Quote it in support reports.
Example
{ "error": { "type": "invalid_request_error", "request_id": "80f1e2c3a4b5c6d7e8f9a0b1c2d3e4f5" }}Headers
Section titled “Headers”Example
Bearer realm="ai-services"The token is valid, but the caller is not permitted to perform this action — either its scope/permission is insufficient or the authenticated user is not authorized for the target account (error type “permission_error”). On /v1/chat/completions specifically, a 403 with error type “content_policy_violation” instead means the request content was blocked by content moderation policy; that response never identifies which filter or category matched.
object
object
Correlation ID for this request, matching the X-Request-ID response header — a 32-character trace ID behind the load balancer, otherwise a UUID. Quote it in support reports.
Example
{ "error": { "type": "invalid_request_error", "request_id": "80f1e2c3a4b5c6d7e8f9a0b1c2d3e4f5" }}The request conflicts with an existing resource
object
object
Correlation ID for this request, matching the X-Request-ID response header — a 32-character trace ID behind the load balancer, otherwise a UUID. Quote it in support reports.
Example
{ "error": { "type": "invalid_request_error", "request_id": "80f1e2c3a4b5c6d7e8f9a0b1c2d3e4f5" }}Rate limit exceeded. The request was throttled at the edge; wait and retry later. The response body is a short HTML page generated by the load balancer, not a structured JSON error — clients should rely on the 429 status code rather than parsing the body.
The knowledge base is not currently available. Retry after a short delay.
object
object
Correlation ID for this request, matching the X-Request-ID response header — a 32-character trace ID behind the load balancer, otherwise a UUID. Quote it in support reports.
Example
{ "error": { "type": "invalid_request_error", "request_id": "80f1e2c3a4b5c6d7e8f9a0b1c2d3e4f5" }}