Creates a new form submission.
CertifyOS API
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/forms/submissions
- Productionhttps://ng-api-production.certifyos.com/forms/submissions
- Staging (Test Data)https://ng-api-stg.certifyos.com/forms/submissions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.certifyos.com/_mock/reference/application/api/forms/submissions \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'organization-id: string' \
-d '{
"data": {}
}'Form submission created successfully.
The unique identifier for the form submission.
The mapped responses for the form submission. The structure of this object is flexible and can vary based on the form and its fields. Please request the specific structure from the Certify team if needed.
The raw responses for the form submission. The structure of this object is flexible and can vary based on the form and its fields. Please request the specific structure from the Certify team if needed.
The id of the version of the form used for this submission.
The date and time when the form submission was created
{ "id": "d453006f-30e2-4a01-841d-962579531c25", "organizationId": "string", "mappedData": { "personalInformation": { … }, "primaryPracticeLocation": { … }, "credentialingAddress": { … } }, "submissionData": {}, "submissionPdf": {}, "submittedBy": { "email": "string", "user": {} }, "form": {}, "formVersionId": "e4dea7d7-6023-4c64-b0f1-777dd0266a02", "createdAt": "2025-01-01T12:00:00Z", "createdBy": "string", "updatedAt": "2025-01-01T12:00:00Z" }
- Mock serverhttps://docs.certifyos.com/_mock/reference/application/api/forms/submissions/{id}
- Productionhttps://ng-api-production.certifyos.com/forms/submissions/{id}
- Staging (Test Data)https://ng-api-stg.certifyos.com/forms/submissions/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.certifyos.com/_mock/reference/application/api/forms/submissions/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'organization-id: string'Form submission found.
The unique identifier for the form submission.
The mapped responses for the form submission. The structure of this object is flexible and can vary based on the form and its fields. Please request the specific structure from the Certify team if needed.
The raw responses for the form submission. The structure of this object is flexible and can vary based on the form and its fields. Please request the specific structure from the Certify team if needed.
The id of the version of the form used for this submission.
The date and time when the form submission was created
{ "id": "d453006f-30e2-4a01-841d-962579531c25", "organizationId": "string", "mappedData": { "personalInformation": { … }, "primaryPracticeLocation": { … }, "credentialingAddress": { … } }, "submissionData": {}, "submissionPdf": {}, "submittedBy": { "email": "string", "user": {} }, "form": {}, "formVersionId": "e4dea7d7-6023-4c64-b0f1-777dd0266a02", "createdAt": "2025-01-01T12:00:00Z", "createdBy": "string", "updatedAt": "2025-01-01T12:00:00Z" }