마이크로소프트/Power Automate

[Power Automate], 파워오토메이트 서버로 이용하는 방법 -post

Olivia-BlackCherry 2023. 6. 11. 10:10

목차

    Power Automate를 서버로, Postman을 클라이언트로 

    REST API의 Post 메서드 활용하기

    -post는 데이터를 DB에 저장할 때 사용하는 메서드이다. 

     

    <절차>

    HTTP web service 구성(Json 객체 받아들일 수 있는 post 메서드 형태)

    1. when a http request is received

    -method: post

     

    Client에서 JSON 형태로 만들어서 post method 호출

    2. Parse Json

    content- body

    schema -generate from sample 클릭

    {

    "Title": "타이틀",

    "ItemName":"아이템이름"

    }

     

     

    3. URL-postman에 붙여 넣기

    - api method Post로 바꾸기

    - body raw-Json으로 바꾸기

    - 스키마 넣기

    {

    "Title": "타이틀",

    "ItemName":"아이템이름"

    }

     

    SharePoint에 JSON 객체로 추가

    4. create item> 정보 채우기

    >> input, output 결과

     

     

    추가한 항목의 ID값을 Return

    5. response> status> body 채우기

    >> input, output 결과