//Replace username and password
//CURL
curl -X 'POST' \
'https://nb063319.int.bit.ru:44300/api/Token?username=admin&password=Admin1Default%40' \
-H 'accept: */*' \
-d ''
//Request URL
"https://nb063319.int.bit.ru:44300/api/Token?username=admin&password=Admin1Default%40"
// Provide a link to start the Master
// URL
'"A-link-for-working-with-Master"/api/Tasks/GetTaskList'
// Specify the URL to start the Master and the task ID (without quotes)
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Tasks/StartTask?taskId="ID-of-a-task"' \
-H 'accept: */*' \
-d ''
// URL
'"A-link-for-working-with-Master"/api/Tasks/StartTask?taskId="ID-of-a-task"'
// Specify the URL to start the Master and the name of a task
// URL
'"A-link-for-working-with-Master"/api/Tasks/StartTask?taskName=name'
// Specify the URL to start the Master and the task ID (without quotes)
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Tasks/StopTask?taskId="ID-of-a-task"' \
-H 'accept: */*' \
-d ''
// URL
'"A-link-for-working-with-Master"/api/Tasks/StopTask?taskId="ID-of-a-task"'
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Processes/StartProcess?processId="ID-of-a-process"' \
-H 'accept: */*' \
-d ''
// URL
'"A-link-for-working-with-Master"/api/Processes/StartProcess?processId="ID-of-a-process"'
/api/Processes/StopProcess?processId={processId}.
//Curl
curl -X 'GET' \
'"A-link-for-working-with-Master"/api/Data/GetValueById?dataId=7' \
-H 'accept: text/plain'
//Request URL
"A-link-for-working-with-Master"/api/Data/GetValueById?dataId=7
//Curl
'"A-link-for-working-with-Master"/api/Data/GetValueByKey?key=Key' \
-H 'accept: text/plain'
//Request URL
"A-link-for-working-with-Master"/api/Data/GetValueByKey?key=Key
//Curl
'"A-link-for-working-with-Master"/api/Data/SetValueById?dataId=1&value=Value' \
-H 'accept: */*' \
-d ''
//Request URL
"A-link-for-working-with-Master"/api/Data/SetValueById?dataId=1&value=Value
//Curl
'"A-link-for-working-with-Master"/api/Data/SetValueByKey?key=Key&value=Value' \
-H 'accept: */*' \
-d ''
//Request URL
"A-link-for-working-with-Master"/api/Data/SetValueByKey?key=Key&value=Value
/api/Data/GetDataList
//CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Queues/PushElementToQueue?queueName=queueName&data=data&priority=1&postponeDate=2022-09-21T17%3A32%3A28Z&deadlineDate=2022-09-22T17%3A32%3A28Z&comment=comment&reference=reference&isReferenceUnique=false' \
-H 'accept: text/plain' \
-d ''
//URL
"A-link-for-working-with-Master"/api/Queues/PushElementToQueue?queueName=queueName&data=data&priority=1&postponeDate=2022-09-21T17%3A32%3A28Z&deadlineDate=2022-09-22T17%3A32%3A28Z&comment=comment&reference=reference&isReferenceUnique=false
//CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Queues/PushElementToQueueFromBodyData?priority=1&isReferenceUnique=false' \
-H 'accept: text/plain' \
-H 'Content-Type: application/json' \
-d '"data"'
//URL
"A-link-for-working-with-Master"/api/Queues/PushElementToQueueFromBodyData?priority=1&isReferenceUnique=false
//CURL
curl -X 'GET' \
'"A-link-for-working-with-Master"/api/Queues/GetElementFromQueue?queueName=%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C1&reference=reference&priority=1&comment=comment' \
-H 'accept: text/plain'
//URL
"A-link-for-working-with-Master"/api/Queues/GetElementFromQueue?queueName=%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C1&reference=reference&priority=1&comment=comment
//CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Queues/ConfirmQueueItemProcessFinish?id=1&isSuccess=true&errorComment=%D0%BD%D0%B5%20%D0%BE%D0%B1%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%BD&errorType=1' \
-H 'accept: */*' \
-d ''
//URL
"A-link-for-working-with-Master"/api/Queues/ConfirmQueueItemProcessFinish?id=1&isSuccess=true&errorComment=%D0%BD%D0%B5%20%D0%BE%D0%B1%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D0%BD&errorType=1
//CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Queues/CancelQueueItem?id=1&comment=comment' \
-H 'accept: */*' \
-d ''
//URL
"A-link-for-working-with-Master"/api/Queues/CancelQueueItem?id=1&comment=comment
//CURL
curl -X 'GET' \
'"A-link-for-working-with-Master"/api/Queues/GetQueueItemStatus?id=1' \
-H 'accept: text/plain'
//URL
"A-link-for-working-with-Master"/api/Queues/GetQueueItemStatus?id=1
//CURL
curl -X 'GET' \
'"A-link-for-working-with-Master"/api/Queues/GetQueueItemsByFilters?queueName=%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C1&maxItems=100&statuses=new' \
-H 'accept: text/plain'
//URL
"A-link-for-working-with-Master"/api/Queues/GetQueueItemsByFilters?queueName=%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C1&maxItems=100&statuses=new
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Schedulers/UpdateSchedulerStatus?id=1&isActive=true' \
-H 'accept: */*' \
-d ''
// URL
'"A-link-for-working-with-Master"/api/Schedulers/UpdateSchedulerStatus?id=1&isActive=true
/api/GetSchedulersList
/api/Schedulers/GetSchedulersActivityStatus
// CURL
curl -X 'GET' \
'"A-link-for-working-with-Master"/api/Projects/GetProjectList' \
-H 'accept: */*'
// URL
"A-link-for-working-with-Master"/api/Projects/GetProjectList
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Projects/UploadProjectVersion?projectId=1&entryPoint=entryPoint&version=version&description=description&isActual=false' \
-H 'accept: */*' \
-d ''
// URL
"A-link-for-working-with-Master"/api/Projects/UploadProjectVersion?projectId=1&entryPoint=entryPoint&version=version&description=description&isActual=false
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Projects/DownloadProject?projectId=1&version=version' \
-H 'accept: text/plain' \
-d ''
// URL
"A-link-for-working-with-Master"/api/Projects/DownloadProject?projectId=1&version=version
// CURL
curl -X 'POST' \
'"A-link-for-working-with-Master"/api/Projects/UploadProject?entryPoint=entryPoint&name=name&description=description' \
-H 'accept: */*' \
-d ''
// URL
"A-link-for-working-with-Master"/api/Projects/UploadProject?entryPoint=entryPoint&name=name&description=description
/api/Projects/GetProject?projectId={projectId}.
/api/Projects/ProjectExists?projectId={projectId}
/api/ScheduleTypes/GetList?scheduleMode=Calendar
/api/ScheduleTypes/GetCalendar?name=test