SwiftGoma.SwiftGoma

Search endpoints

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

Order Messages

Mark messages read

POST/api/v1/orders/:id/messages/read

Marks every unread message on the order's thread as read for the caller.

Requires Authorization
Session

Path parameters

idstringrequired
Order ID.
Request
curl --request POST \
  --url https://api.swiftgoma.com/api/v1/orders/:id/messages/read \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "orderId": "ord_5e6f7a"
  }
}