Assign user to test run case
PUT
/projects/:project_id/test_runs/:test_run_id/assign_user
Base URL
https://test-management.testsigma.com/api/v1
Assigns a user to a test case within a specific test run.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →PATH PARAMETERS
project_id | Unique identifier of the project the test run belongs to. |
test_run_id | Identifier of the test run containing the test case. |
REQUEST BODY
user_id | Unique identifier of the user to assign to the test case. |
test_case_id | Unique identifier of the test case to assign the user to. |
RESPONSE ATTRIBUTES
message | Confirmation message for the assignment; may be empty. |
data.test_run_case.test_case_id | Unique identifier of the test case. |
data.test_run_case.user_id | Unique identifier of the assigned user. |
data.test_run_case.updated_at | Unix timestamp of when the assignment was applied. |
REQUEST
curl -X PUT \
'https://test-management.testsigma.com/api/v1/projects/:project_id/test_runs/:test_run_id/assign_user' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"user_id": "cbbc40a5-26e9-4b88-8c27-3626c9fbdaa4",
"test_case_id": "9ac271b6-4e89-4c93-8c75-2d625efa0b2d"
}'const response = await fetch('https://test-management.testsigma.com/api/v1/projects/:project_id/test_runs/:test_run_id/assign_user', {
method: 'PUT',
headers: {
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"user_id": "cbbc40a5-26e9-4b88-8c27-3626c9fbdaa4",
"test_case_id": "9ac271b6-4e89-4c93-8c75-2d625efa0b2d"
})
});
const data = await response.json();import requests
response = requests.put(
'https://test-management.testsigma.com/api/v1/projects/:project_id/test_runs/:test_run_id/assign_user',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
},
json={
"user_id": "cbbc40a5-26e9-4b88-8c27-3626c9fbdaa4",
"test_case_id": "9ac271b6-4e89-4c93-8c75-2d625efa0b2d"
}
)
data = response.json()RESPONSE200OK
{
"message": "User assigned successfully.",
"data": {
"test_run_case": {
"test_case_id": "9ac271b6-4e89-4c93-8c75-2d625efa0b2d",
"user_id": "cbbc40a5-26e9-4b88-8c27-3626c9fbdaa4",
"updated_at": 1710761600
}
}
}