createFormSubmission
Create a "form submission" entity. This is only meant to be used as a quick way of putting together a form and submit data for it, in the form of JSON - it is not expected that all form submissions will come through this path.
This field requires the Authorization header to be set.
Arguments
Returns
FormSubmissionOuputPossible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation CreateFormSubmission($input: FormSubmissionInput!) {
createFormSubmission(input: $input) {
content
errors {
...SerializerFieldErrorsTypeFragment
}
id
}
}
Variables
{
"input": FormSubmissionInput
}
Response
{
"data": {
"createFormSubmission": {
"content": {"key": "value"},
"errors": [SerializerFieldErrorsType],
"id": 66487955
}
}
}