Closed tonykang22 closed 1 year ago
GET /v1/order-manager/purchasing-products
{ "status": "SUCCESS", "body": { "size": "2", "content": [ { "requestId": "12345", "orderManagerProduct": { "coupangSoldProduct": null, "amazonProduct": null, "zincResponseDto": null, "ohmyzipResponseDto": null } }, { "requestId": "2345", "orderManagerProduct": { "coupangSoldProduct": null, "amazonProduct": null, "zincResponseDto": null, "ohmyzipResponseDto": null } } ] } }
GET /v1/order-manager/unfinished-products
{ "status": "SUCCESS", "body": { "queue_size": "3", "content": [ { "requestId": "123", "jobStatus": "PURCHASE", "responseDto": { "coupangSoldProduct": null, "amazonProduct": null, "zincResponseDto": null, "ohmyzipResponseDto": null } }, { "requestId": "abc", "jobStatus": "DELIVERY", "responseDto": { "coupangSoldProduct": null, "amazonProduct": null, "zincResponseDto": null, "ohmyzipResponseDto": null } }, { "requestId": "456", "jobStatus": "PREPARE", "responseDto": { "coupangSoldProduct": null, "amazonProduct": null, "zincResponseDto": null, "ohmyzipResponseDto": null } } ] } }
PUT /v1/order-manager/schedule-status
{ "status": "SUCCESS", "body": "Request sent successfully." }
Order-Manager Controller API
구입 중인 상품 목록 조회
Request
Response
구입이 비정상적으로 멈춘 상품 목록 조회
Request
Response
스케쥴 작업 중지 및 재개
Request
Response