Quick Answers

Get all quick answers

GET https://yourwebsite.com/api/store/answers

[
    {
        "id": "1",
        "title": "hello",
        "content": "<p><strong>How can I help you?</strong></p>"
    },
    {
        "id": "2",
        "title": "test",
        "content": "Test message!"
    }
]

Get a category

GET https://yourwebsite.com/api/support/answers/<id>

{
    "id": "1",
    "title": "hello",
    "content": "<p><strong>How can I help you?</strong></p>"
}

Last updated