Get launch
Gets information about a launch by UUID
- Parameters
- Advanced call ?
Function GetLaunch(Val URL, Val Token, Val Project, Val LaunchUUID) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| URL | --url | String | ✔ | ReportPortal server URL |
| Token | --token | String | ✔ | Access token |
| Project | --proj | String | ✔ | Project ID |
| LaunchUUID | --uuid | String | ✔ | Launch UUID |
Returns
Map Of KeyAndValue - serialized JSON response from ReportPortal
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete HTTP structure with fields code, body, and headers |
| retries | Number of HTTP request send attempts on 5** status codes or internal client errors |
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
1C:Enterprise/OneScript code example
URL = "tests.openintegrations.dev";
Token = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX25hbWUiOiJzdXBlcmFkbWluIiwic2NvcGVzIjpbInVpIl0sImV4cCI6MTc2MjAwMDI3NiwiaWF0IjoxNzYxOTEzODc2LCJqdGkiOiI0NTI3YTc5OS0wN2...";
LaunchUUID = "";
Project = "Test";
Result = OPI_ReportPortal.GetLaunch(URL, Token, Project, LaunchUUID);
- Bash
- CMD/Bat
oint rportal GetLaunch \
--url "tests.openintegrations.dev" \
--token "***" \
--proj "Test" \
--uuid "98be98a2-49ac-478e-9e08-ecdfdb24ece5"
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"
}