Update Submission
Update submission metadata — mark as read or star/unstar.
submissions.view
PUT
/v1/submissions/:idRequest Body
| Parameter | Type | Description |
|---|---|---|
| isRead | boolean | Mark as read/unread |
| isStarred | boolean | Star/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"
}
}