SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Support

List contact messages

GET/api/v1/support/messages

Lists submitted contact messages. Staff-only.

Requires Authorization
ADMIN, SUPPORT only
Session

Query parameters

pagenumber
Defaults to 1.
limitnumber
Max 100. Defaults to 20.
statusstring
OPEN, ASSIGNED, or CLOSED.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/support/messages \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "messages": [
      {
        "id": "cmsg_1a2b3c",
        "name": "Aline Mapendo",
        "email": "aline@example.com",
        "subject": "ORDER_ISSUE",
        "message": "Ma commande n'est jamais arrivée.",
        "status": "OPEN",
        "assignedTo": null,
        "createdAt": "2026-02-15T09:00:00.000Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 20,
      "total": 1,
      "totalPages": 1
    }
  }
}