POST
/api/v1/form/{form_uuid}/submission/{submission_uuid}/answer
curl \
--request POST 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed/submission/6ff8f7f6-1eb3-3525-be4a-3932c805afed/answer' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"answers":[{"last_name":"Cena","first_name":"John"}]}'
Request examples
{
"answers": [
{
"last_name": "Cena",
"first_name": "John"
}
]
}
Response examples (401)
{
"message": "Unauthenticated."
}