Change Participant Status Developing
Run in Apidog
Request Provide your bearer token in the Authorization
header when making requests to protected resources. Example: Authorization: Bearer ********************
Body Params application/json
{
"batchId" : "dfb9e1b0-d672-4004-8e28-50f489881e5e" ,
"status" : "ON_GOING" ,
"activityId" : "6b0eedbb-2ed2-11ef-bee7-0a71e33928b1" ,
"participantId" : "2a054cd0-d698-4915-ba80-956aab028e1b"
}
Request Code Samples
curl --location --request PUT 'https://service-dash.dlabssaas.io/rest/admin/secured/participant/status' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"batchId": "dfb9e1b0-d672-4004-8e28-50f489881e5e",
"status": "ON_GOING",
"activityId": "6b0eedbb-2ed2-11ef-bee7-0a71e33928b1",
"participantId": "2a054cd0-d698-4915-ba80-956aab028e1b"
}'
Responses application/json Generate Code
{
"status" : "success" ,
"data" : true ,
"info" : {
"id" : "SUCCESS_EDIT_DATA" ,
"message" : "Participant Status successfully edited !" ,
"messageEn" : null ,
"messageId" : null ,
"field" : null ,
"redirect" : null
}
}
Modified at 2024-08-15 23:49:57