마이그레이션 journalid를 찾는 방법

마이그레이션에는 journalid가 두 개 이상 있을 수 있습니다. 특정 마이그레이션 id에 대한 결과 응답 목록에서 journalid를 찾을 수 있습니다.

이 요청에서는, id 16을 가진 마이그레이션 결과를 검색했습니다.
<your_control_room_url>/v3/migration/16/results/list
이 요청은 journalid로서 각 개체 목록id를 반환했습니다. 이 예시에서는, 마이그레이션 id 16에 대한 두 개의 저널 식별자 30과 31이 있습니다.
{
    "page": {
        "offset": 0,
        "total": 2,
        "totalFilter": 2
    },
    "list": [
        {
            "sourceId": 12,
            "sourceName": "Dependency of IGN-23437.mbot",
            "sourcePath": "Automation Anywhere\\Bots\\My MetaBots\\Dependency of IGN-23437.mbot",
            "sourceType": "application/vnd.aa.mbot",
            "targetId": 0,
            "status": "FAILED",
            "reason": "The logic IGN-23437 has some commands or actions which are not yet supported for migration.",
            "selectedByUser": true,
            "userId": 9,
            "id": 30,
            "targetName": "",
            "targetPath": "",
            "targetType": ""
        },
        {
            "sourceId": 12,
            "sourceName": "Dependency of IGN-23437.mbot",
            "sourcePath": "Automation Anywhere\\Bots\\My MetaBots\\Dependency of IGN-23437.mbot",
            "sourceType": "application/vnd.aa.mbot",
            "targetId": 0,
            "status": "FAILED",
            "reason": "Migration of MetaBot failed.",
            "selectedByUser": false,
            "userId": 9,
            "id": 31,
            "targetName": "",
            "targetPath": "",
            "targetType": ""
        }
    ]
}
마이그레이션 id와 저널 id는 작업 매핑 요청에서 이용할 수 있습니다.
<your_control_room_url>/v3/migration/16/journal/31/actionmappings/list