Skip to main content

Get launch

Gets information about a launch by UUID

Function GetLaunch(Val URL, Val Token, Val Project, Val LaunchUUID) Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringReportPortal server URL
Token--tokenStringAccess token
Project--projStringProject ID
LaunchUUID--uuidStringLaunch UUID
Returns

Map Of KeyAndValue - serialized JSON response from ReportPortal

1C:Enterprise/OneScript code example
URL = "tests.openintegrations.dev";
Token = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX25hbWUiOiJzdXBlcmFkbWluIiwic2NvcGVzIjpbInVpIl0sImV4cCI6MTc2MjAwMDI3NiwiaWF0IjoxNzYxOTEzODc2LCJqdGkiOiI0NTI3YTc5OS0wN2...";
LaunchUUID = "";
Project = "Test";

Result = OPI_ReportPortal.GetLaunch(URL, Token, Project, LaunchUUID);
oint rportal GetLaunch \
--url "tests.openintegrations.dev" \
--token "***" \
--proj "Test" \
--uuid "98be98a2-49ac-478e-9e08-ecdfdb24ece5"
Result
{
"owner": "superadmin",
"description": "Test launch",
"locked": false,
"id": 237,
"uuid": "98be98a2-49ac-478e-9e08-ecdfdb24ece5",
"name": "Test",
"number": 149,
"startTime": "2026-01-01T10:00:00Z",
"lastModified": "2026-05-26T14:37:52.569196Z",
"status": "IN_PROGRESS",
"statistics": {
"executions": {},
"defects": {}
},
"attributes": [],
"mode": "DEFAULT",
"analysing": [],
"approximateDuration": 36000,
"hasRetries": false,
"rerun": false,
"retentionPolicy": "REGULAR"
}