POST
/
evaluation-platform
/
v1
/
exam
/
{examId}
/
publish-result
curl --request POST \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{examId}/publish-result/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "entity": "final-publish"
}'
{
  "message": "Successfully {{entity}} result"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

examId
string
required

Body

application/json
Request body for final publish operation.
entity
string
required

The entity to be published either as a pre-publish or final-publish.

Example:

"final-publish"

Response

200
application/json
Success
message
string
Example:

"Successfully {{entity}} result"