Return a submission to the inbox
const url = 'https://api.deploybase.eu/api/v1/api/v1/form-submissions/example/ham';const options = {method: 'PUT', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://api.deploybase.eu/api/v1/api/v1/form-submissions/example/ham \ --header 'Authorization: <Authorization>'Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ”Submission ID
Responses
Section titled “ Responses ”OK
object
object
object
Counted tracks whether this counted against the team’s monthly quota. Ham only.
Data is the submitted payload minus the reserved _-prefixed control fields.
NOTE: this is a Go map, so field order is not preserved — the order the visitor’s form declared its fields is lost at insert. Anything rendering these must impose its own order: CSV export sorts the key union, and encoding/json sorts on marshal.
object
NotifiedAt records when the notification worker finished handling this row (email sent, digested, or deliberately skipped). NULL = pending.
Subject is the sanitized _subject control field (CR/LF stripped at ingest), used only as an email subject override by the notification worker. NULL when the visitor sent none.
Example
{ "data": { "status": "inbox" }}Unauthorized
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Forbidden
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Not Found
object
object
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}