description |
---|
This API is used to publish the question on Sunbird platform. |
{% swagger method="post" path="/question/v1/publish/{Question_Id}" baseUrl="" summary="This API is used to publish the question on Sunbird-inQuiry platform." expanded="true" %} {% swagger-description %} •
/publish
endpoint executes the "Publish Question" request based on parameters provided as metadata in the request body
\
• It points to inquiry-api-service (assessment service)-
/question/v4/publish
\
• You need to provide a valid Question Id value in
{Question_Id}
field of the API URL.
\
• It is mandatory to provide values for parameters marked with
*
.
\
• Mandatory fields cannot be null or empty.
\
• Question schema check
{% endswagger-description %}
{% swagger-parameter in="path" name="Question_Id" type="String" required="true" %} Append a valid Question ID To the Request URL {% endswagger-parameter %}
{% swagger-parameter in="header" name="Content-Type" type="String" required="true" %} The Content-Type entity is the media type of the resource. It should be
Application/json
{% endswagger-parameter %}{% swagger-parameter in="header" name="Authorization" type="String" required="true" %} To make use of the API, you require authorization. Raise a request to the administrator, for the use of the API. You will receive the authorization key. Specify the key received, here.
Set Bearer {{api_key}} {% endswagger-parameter %}
{% swagger-parameter in="header" name="x-channel-id" type="String" %} Unique identification number associated with a root organization. {% endswagger-parameter %}
{% swagger-parameter in="body" name="request" type="Object" %} metadata about the question to be published {% endswagger-parameter %}
{% swagger-response status="200: OK" description="The Publish Question operation was successful!" %}
{
"id": "api.question.publish",
"ver": "3.0",
"ts": "2021-02-02T20:15:02ZZ",
"params": {
"resmsgid": "9c64cc9c-bed5-44c7-85bf-4918c3a42f58",
"msgid": null,
"err": null,
"status": "successful",
"errmsg": null
},
"responseCode": "OK",
"result": {
"message": "Question is successfully sent for Publish",
"identifier": "do_113207931921555456111"
}
}
{% endswagger-response %}
{% swagger-response status="404: Not Found" description="The Publish Question operation failed. The possible reason for failure is that you may have provided wrong question ID" %}
{
"id": "api.question.publish",
"ver": "3.0",
"ts": "2021-02-02T20:15:32ZZ",
"params": {
"resmsgid": "b084af8b-706b-4079-8ec2-0beb0753931c",
"msgid": null,
"err": "NOT_FOUND",
"status": "failed",
"errmsg": "Error! Node(s) doesn't Exists. | [Invalid Node Id.]: do_1132079319215554561111"
},
"responseCode": "RESOURCE_NOT_FOUND",
"result": {
"messages": null
}
}
{% endswagger-response %}
{% swagger-response status="500: Internal Server Error" description="Looks like something went wrong! These errors are tracked automatically." %}
{
"result": {},
"id": "string",
"ver": "string",
"ts": "string",
"params": {
"resmsgid": "string",
"msgid": "string",
"err": "string",
"status": "string",
"errmsg": "string"
},
"responseCode": "string"
}
{% endswagger-response %} {% endswagger %}
Attribute | Type | Description |
---|---|---|
identidier | String | Unique Question identifier |
message | String | Publish success message |
curl --location -g --request POST '{{host}}/question/v1/publish/{{question_id}}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{api_key}}' \
--header 'X-Channel-Id: {{channel_id}}' \
--data-raw '{
"request": {}
}'