Skip to content

Request a Solution

POST
/api/solutions/requests/
curl --request POST \
--url http://localhost:8000/api/solutions/requests/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form message=example \
--form attachments=@file

Submit a free-text request (plus optional supporting files) for a Solution the catalog doesn’t yet offer. Emailed to the AiKYNETIX team; reply-to is the requesting coach. Multipart (message + attachments[]).

POST /api/solutions/requests/ — a coach’s “Request a Solution” (a message + optional supporting files). Multipart.

object
message
required

What the coach would like a Solution to assess.

string
>= 1 characters <= 4000 characters
attachments

Up to 5 supporting files (clip / screenshot / spec sheet).

Array<string>
<= 5 items
Media typeapplication/json
object
submitted
required

Always true on a 202 — the request was queued for the team.

boolean
Examplegenerated
{
"submitted": true
}
Media typeapplication/json
object
detail
required

Human-readable message, or a stable machine code for the cases a client branches on. The standard envelope for 400 (validation — a field-keyed object may appear instead), 401 (missing / invalid credentials), 403 (authenticated but not permitted), and 404 (absent — cross-team records are collapsed to 404 so the API never leaks the existence of another team’s data).

string
Examplegenerated
{
"detail": "example"
}