FAQ API
GET /api/v1/faq
Section titled “GET /api/v1/faq”Returns published FAQ items, optionally filtered by section.
Request
Section titled “Request”# All published FAQscurl https://admin.deploymonkey.com/api/v1/faq
# Filter by sectioncurl https://admin.deploymonkey.com/api/v1/faq?section=pricingQuery Parameters
Section titled “Query Parameters”| Parameter | Type | Default | Description |
|---|---|---|---|
section | string | — | Filter by section: pricing, general, or technical |
Response
Section titled “Response”{ "success": true, "faqs": [ { "id": 1, "question": "Do I need my own server?", "answer": "Yes. Deploy Monkey manages Odoo on your server...", "section": "general" }, { "id": 2, "question": "Can I cancel anytime?", "answer": "Yes! All plans are month-to-month with no contracts...", "section": "pricing" } ]}FAQ Object
Section titled “FAQ Object”| Field | Type | Description |
|---|---|---|
id | integer | FAQ ID |
question | string | The question |
answer | string | The answer |
section | string | Section category: pricing, general, or technical |
Sections
Section titled “Sections”| Value | Description |
|---|---|
pricing | Billing, plans, and payment questions |
general | General product questions |
technical | Technical and infrastructure questions |