폴더 또는 에셋의 사후 처리 상태를 추적하는 API

NOTE
최신 REST API 끝점 정의 및 관련 세부 정보는 https://<aem-author-url>/libs/fmdita/clientlibs/api-docs/index.html에서 Swagger 설명서를 참조하십시오(<aem-author-url>을(를) AEM 서버 URL로 바꾸기). 이 문서는 2026년 10월에 보관될 예정이므로 앞으로 진행될 최신 API 정보에 대해 Swagger 설명서를 사용하는 것이 좋습니다.

다음은 자산의 상태를 가져오기 위해 비동기 작업을 시작하는 POST 메서드입니다.

안내서에서 에셋 상태 찾기

요청 URL

http://<aem-guides-server>:<port-number>bin/guides/v1/assets/status

매개변수

이름
유형
필수
설명
path
문자열
상태를 가져와야 하는 폴더 또는 자산 경로입니다.
excludedPaths
문자열
아니요
위 목록에서 제외할 폴더 경로입니다.
{

    "paths": [

        "/content/dam/status-fetch1",

        "/content/dam/status-fetch2"

    ],

    "excludedPaths": [

        "content/dam/status-fetch1/excluded-folder"

    ]

}

응답 값
비동기 작업의 상태를 가져오기 위해 폴링할 jobId입니다.

{

  "jobId": "akjhdfalkj1132",

  "status": "WAITING",



}

Poller API

위 API에 의해 실행된 비동기 작업의 상태를 가져오는 GET 메서드입니다.

요청 URL

http://<aem-guides-server>:<port-number>bin/guides/v1/assets/status

매개변수

이름
유형
필수
설명
jobId
문자열
위 API에서 반환된 작업 ID입니다.

응답 값

에셋 및 해당 상태 목록.

{

  "jobId": " akjhdfalkj1132",

  "status": "SUCCESS",

  "assets": [

    {

      "path": "/content/dam/status-fetch1/a.dita",

      "uuid": "GUID-1293914ansd",

      "status": "SUCCESS",

      "exists": true

    },

    {

      "path": "/content/dam/status-fetch1/b.dita",

      "uuid": "GUID-1883241",

      "status": "FAILURE",

      "exists": true

    }



  ]

}

상태 값: 성공, 실패, 처리, 보류 중

recommendation-more-help
experience-manager-guides-help-product-guide