Update Status Activity
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"batchId": "",
"participantId": "",
"status": "In Progress",
"startAt": "2024-07-04 00:00:00",
"finishAt": "2024-07-04 23:59:29",
"proctors": []
}
Request Code Samples
curl --location --request PUT 'https://service-dash.dlabssaas.io/rest/admin/secured/batch/openapi/update-status-activity' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"batchId": "",
"participantId": "",
"status": "In Progress",
"startAt": "2024-07-04 00:00:00",
"finishAt": "2024-07-04 23:59:29",
"proctors": []
}'
Responses
application/json Modified at 2024-07-18 01:43:42