Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1) Request

Endpoint

product 환경environment: https://prod.ax-cloud.com/v1/channel/review/tour/<question_code>

test 환경environment: https://test.ax-cloud.com/v1/channel/review/tour/<question_code>

Method

GET

Description

특정 Product의 문의 답변을 조회 합니다.

Content-Type

application/json

Headers > Authorization

Token {api_key}

Headers > Channel

Code {channel_code}

2) Path Parameter

Name

Required

Type

Description

question_code

O

string

답변을 식별할 수 있도록 채널에서 생성한 질문의 식별자

...

Code Block
curl -X 'GET' \
  'https://prod.ax-cloud.com/v1/channel/question/tour/090a9be0397' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -H "Authorization: Token api_key_secret" \
  -H "Channel: Code code_secret"

...