Submit
POST endpoint for /brand/questionnaire/submit in brand category
Overview
- Method: POST
- Path:
/brand/questionnaire/submit - Tags: brand
Parameters
No parameters required.
Request Body
- Content Type:
application/json - Required: Yes
- Schema: Defined
Responses
200
Successful response
Content Type: application/json
{
"type": "object",
"properties": {
"submissionId": {
"type": "string"
},
"questionnaireId": {
"type": "string"
},
"customerId": {
"type": "string"
},
"status": {
"type": "object"
},
"recommendedTreatments": {
"type": "string"
},
"nextSteps": {
"type": "string"
},
"estimatedReviewTime": {
"type": "string"
},
"submitted_at": {
"type": "string"
}
},
"required": [
"submissionId",
"questionnaireId",
"status",
"recommendedTreatments",
"nextSteps",
"submitted_at"
]
}400
Bad Request
Content Type: application/json
{
"$ref": "#/components/schemas/Error"
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X POST \
http://localhost:9000/brand/questionnaire/submit \
-H "Content-Type: application/json" \
-d '{"example": "data"}'Interactive Testing
You can test this endpoint interactively in the Swagger UI (opens in a new tab).