Research Questions
Basic Research Questions Operations
Research Questions Create & Retrieval Operations
get
Authorizations
Responses
200Success
application/json
get
/prod/v0/answers/GET /prod/v0/answers/ HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
[
{
"id": 1,
"status": "text",
"question": "text",
"answer": null
}
]post
Authorizations
Body
idintegerRead-onlyRequired
statusstring · max: 1Read-onlyRequired
questionstring | nullableOptional
specificationstring · max: 255Write-onlyRequired
answeranyRead-onlyRequired
Responses
201Success
application/json
post
/prod/v0/answers/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"
}201Success
{
"id": 1,
"status": "text",
"question": "text",
"answer": null
}get
Authorizations
Path parameters
idintegerRequired
A unique integer value identifying this answer.
Responses
200Success
application/json
get
/prod/v0/answers/{id}/GET /prod/v0/answers/{id}/ HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
"id": 1,
"status": "text",
"question": "text",
"answer": null
}Last updated