Endpoints
Agent settings
Validate publishing integration credentials before using them in an agent workflow.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Validate publishing integration credentials before using them in an agent workflow.
POST /projects/{project_id}/agent/settings/test-webflow
| Field | Type | Required | Description |
|---|---|---|---|
project_id | string (UUID) | Yes | Same project ID used in the URL path |
site_id | string | Yes | Webflow site ID |
api_token | string | Yes | Webflow API token |
curl -X POST "https://topify-customer-api-production.up.railway.app/api/public/v1/projects/{project_id}/agent/settings/test-webflow" \
-H "X-API-Key: tk_live_..." \
-H "Content-Type: application/json" \
-d '{
"project_id": "a1b2c3d4-...",
"site_id": "65abc123...",
"api_token": "webflow-token"
}'
{
"success": true,
"data": {
"success": true,
"error": null,
"collections": [
{ "id": "collection-id", "title": "Blog posts" }
]
}
}
| Status | Cause |
|---|---|
400 | Missing project ID, site ID, API token, or invalid JSON |
403 | The API key’s team cannot access the project |
500 | Webflow rejected the credentials or the connection test failed |