Publish QuestionSet
This API is used to publish the question set on the Sunbird-inQuiry Platform.
This API is used to publish the question set on the Sunbird-inQuiry Platform.
POST /questionset/v2/publish/{questionSet_id}
• /questionset/v2/publish/{questionSet_id} endpoint executes the "Publish QuestionSet" request based on parameters provided as metadata in the request body. • It points to inquiry-api-service (assessment service) - /questionset/v5/publish/{questionSet_id} • It is mandatory to provide values for parameters marked with * • Mandatory fields cannot be null or empty. • Asynchronous flink job : async-questionset-publish will takes care of the publishing activity.
Path Parameters
questionSet_id
String
Append a valid Question Set Id To the Request URL
Headers
Content-Type*
String
The Content-Type entity is the media type of the resource. Possible media types can be: Application/json
Authorization*
String
All content APIs require authorization for use. Specify the authorization key received from the administrator when placing the request for use of the API. Set Bearer {{api_key}}
x-channel-id
String
Unique identification number associated with a root organization.
Request Body
request
Object
The body is the representation of the resource object for publishing question set
{
"id": "api.questionset.publish",
"ver": "5.0",
"ts": "2023-06-29T07:51:03ZZ",
"params": {
"resmsgid": "62f7e310-39e1-4287-bc9f-f8e6ac5f5bd3",
"msgid": null,
"err": null,
"status": "successful",
"errmsg": null
},
"responseCode": "OK",
"result": {
"message": "QuestionSet is successfully sent for Publish",
"identifier": "do_113208323801554944120"
}
}{
"id": "api.questionset.publish",
"ver": "5.0",
"ts": "2023-06-29T07:51:03ZZ",
"params": {
"resmsgid": "6fc0bd55-e99e-4ae1-80e2-7275458258ab",
"msgid": null,
"err": "NOT_FOUND",
"status": "failed",
"errmsg": "Error! Node(s) doesn't Exists. | [Invalid Node Id.]: do_1132084061164175361221"
},
"responseCode": "RESOURCE_NOT_FOUND",
"result": {
"messages": null
}
}{
"id": "api.questionset.publish",
"ver": "5.0",
"ts": "2023-06-29T07:51:03ZZ",
"params": {
"resmsgid": "f234a6f0-3ac4-11eb-b0a2-8d5c9f561887",
"msgid": null,
"status": "failed",
"err": null,
"errmsg": null
},
"responseCode": "SERVER_ERROR",
"result": {}
}{
"id": "api.questionset.publish",
"ver": "5.0",
"ts": "2023-06-29T11:36:09ZZ",
"params": {
"resmsgid": "93f72a36-e5ca-4154-86a3-de662a20ecf4",
"msgid": null,
"err": "ERR_OBJECT_VALIDATION",
"status": "failed",
"errmsg": "No children's found for identifier:do_2138284054041886721542"
},
"responseCode": "CLIENT_ERROR",
"result": {
"messages": null
}
}Request Sample
{
"request": {
"questionset": {
"lastPublishedBy": "ae94b68c-a535-4dce-8e7a-fb9662b0ad68"
}
}
}Success result schema
identifier
String
Unique Question identifier
message
String
Publish success message
cURL
curl --location -g --request POST '{{host}}/questionset/v2/publish/{{questionSet_id}}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{api_key}}' \
--header 'X-Channel-Id: {{channel_id}}' \
--data-raw '{
"request": {
"questionset": {}
}
}'Last updated
Was this helpful?