목차 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으로 ..