Post join form submission
POST/orgs/:org_id/join_forms/:form_id/submissions
Submit a join form and create a submission which will then need to be accepted
by an official using PATCH on the submission item.
The data must contain the submit_token of the form, and a form_data object
containing the fields that the form has been configured to accept.
{
"submit_token": "abc123def456",
"form_data": {
"first_name": "Clara",
"last_name": "Zetkin",
}
}
Request
Responses
- 202
- 404
Example response for status 202
Example response for status 404