Basic Research Questions Operations
Last updated 25 days ago
/prod/v0/answers/
curl -L \ --url '/prod/v0/answers/' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
[ { "id": 1, "status": "text", "question": "text", "specification": "text", "answer": null } ]
curl -L \ --request POST \ --url '/prod/v0/answers/' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "id": 1, "status": "text", "question": "text", "specification": "text", "answer": null }'
{ "id": 1, "status": "text", "question": "text", "specification": "text", "answer": null }
/prod/v0/answers/{id}//
A unique integer value identifying this answer.
curl -L \ --url '/prod/v0/answers/{id}/' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'