Update Submission

Update submission metadata — mark as read or star/unstar.

submissions.view
PUT/v1/submissions/:id

Request Body

ParameterTypeDescription
isReadbooleanMark as read/unread
isStarredbooleanStar/unstar the submission

Example Request

curl
curl -X PUT "https://proforms.io/api/v1/submissions/sub_def456" \
  -H "Authorization: Bearer pf_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "isRead": true,
    "isStarred": true
  }'

Response

200 OK
{
  "success": true,
  "data": {
    "id": "sub_def456",
    "isRead": true,
    "isStarred": true,
    "updatedAt": "2026-02-17T11:30:00.000Z"
  }
}