Basic Research Questions Operations
Last updated 2 months ago
GET /prod/v0/answers/ HTTP/1.1 Host: Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
[ { "id": 1, "status": "text", "question": "text", "answer": null } ]
A unique integer value identifying this answer.
GET /prod/v0/answers/{id}/ HTTP/1.1 Host: Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "id": 1, "status": "text", "question": "text", "answer": null }
POST /prod/v0/answers/ HTTP/1.1 Host: Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 42 { "question": "text", "specification": "text" }