버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

  • Path Variable : /v1/standardCategory/{depthNo}

다음은 'depthNo' 파라미터를 '1'로 지정하여 호출하는 예제입니다.

코드 블럭
languagesql
curl -X GET \
'https://api-display.x2bee.com/api/display/v1/standardCategory/1' 
-H 'accept: application/json'
  • Query String : GET /v1/site/popupList

다음은 'despMediaCd, popupTgtScrnCd, dispMediaDtlCd, chlDtlNo, prtTypCd’ 파라미터를 Query String (& 구분자로 파라미터 분리) 으로 호출한 예제입니다.

코드 블럭
languagesql
curl -X 'GET' \
'https://api-display.x2bee.com/api/display/v1/site/popupList?dispMediaCd=10&popupTgtScrnCd=01&dispMediaDtlCd=aos&chlDtlNo=1000001&prtTypCd=01' 
-H 'accept: */*'

POST

  • Request Body: POST /v1/payment/refundMileagePayment

다음은 POST 방식으로 Request Body에 파라미터를 담아 호출한 예제입니다.

코드 블럭
curl -X 'POST' \
'https://api-order.x2bee.com/api/order/v1/payment/refundMileagePayment' \
-H 'accept: */*' \
-H 'Content-Type: application/json' \
-d '[
  {
    "searchStartDt": "2023-09-12",
    "searchEndDt": "2023-09-12",
    "ordNo": "string",
    "payGbCd": "string",
    "payStatCd": "string",
    "ordMediaCd": "string",
    "payNo": "string",
    "uprPayNo": "string",
    "ordDtlGbCd": "string",
    "claimNo": "string",
    "rfdAmt": 0,
    "payAmt": 0,
    "mbrNo": "string",
    "payWayCd": "string"
  }
]'

PUT

  • Request Body: PUT /v1/order/stockUpdate

다음은 PUT 방식으로 Request Body에 파라미터를 담아 호출한 예제입니다.

코드 블럭
curl -X 'PUT' \
'https://api-goods.x2bee.com/api/goods/v1/order/stockUpdate?goodsNo=1&itmNo=2&stockCnt=3&stockIncreaseCd=-' \
-H 'accept: */*' \
-H 'Content-Type: application/json' \
-d '[
  {
    "goodsNo": "string",
    "itmNo": "string",
    "stockCnt": 0,
    "stockIncreaseCd": "string",
    "stkQty": 0,
    "itmSaleStatCd": "string"
  }
]'

DELETE

  • Query String: DELETE /v1/customerservice/questionDel

다음은 DELETE 방식으로 Query String에 파라미터를 담아 호출 예제입니다.

코드 블럭
curl -X 'DELETE' \
'https://api-order.x2bee.com/api/order/v1/customerservice/questionDel?accpStrtDt=string&accpEndDt=string&mbrNo=string&cnslNo=string' \
-H 'accept: */*'

응답 형식 (Response Format)

성공

...

API 호출 실패 시 관리되지 않는 예외의 경우 HTTP Status 400번대 또는 500번대 에러 코드와 함께 JSON 형식의 응답 데이터가 내려옵니다.

관리되는 예외의 경우 900번대 에러 코드와 설명이 포함된 JSON 형식의 응답 데이터가 전달됩니다.

...