For the complete documentation index, see llms.txt. This page is also available as Markdown.

Product Q&A Management

Retrieve Product Q&A Detail

get

Function Description

  • Retrieves the detailed content of a product Q&A.


Detailed Description

  • Called to load the existing product Q&A information when modifying a product Q&A.

  • Retrieves the detailed content of a single product Q&A using the question number as a parameter.


Revision History

Release v1.04_231120: Product Q&A

Authorizations
Path parameters
questNostringRequired

Question No.

Example: 11023494
Header parameters
AuthorizationanyOptional

Access Token

Responses
200

Product Q&A Detail Inquiry Success

application/json
anyOptional
get/v1/qna/adv/{questNo}
GET /api/goods/v1/qna/adv/{questNo} HTTP/1.1
Host: api-goods.x2bee.com/
Accept: */*

No content

Modify Product Q&A

put

Function Description

  • Modifies a product Q&A that has been written.


Detailed Description

  • Called when a product Q&A is modified on the Product Q&A list screen or the Product Q&A screen in My Page.

  • Modifies the product Q&A corresponding to the given question number, which is received as a parameter.

  • Verifies the member information so that only the member who wrote the product Q&A can modify it.


Revision History

Release v1.04_231120: Improved product Q&A modification API

Authorizations
Path parameters
questNostringRequired

Product Q&A No.

Example: 11023494
Query parameters
filesstring · binaryRequired

Multimedia Information

Header parameters
AuthorizationanyOptional

Access Token

Body
objectOptional
Responses
200

Product Q&A Modification Success

*/*
anyOptional
put/v1/qna/adv/{questNo}
PUT /api/goods/v1/qna/adv/{questNo}?files=binary HTTP/1.1
Host: api-goods.x2bee.com/
Content-Type: application/json
Accept: */*
Content-Length: 17

{
  "question": null
}

No content

Delete Product Q&A

delete

Function Description

  • Deletes a product Q&A.


Detailed Description

  • Called when a product Q&A is deleted on the Product Q&A list screen or the Product Q&A screen in My Page.

  • Deletes the product Q&A corresponding to the given question number, which is received as a parameter.

  • Verifies the member information so that only the member who wrote the product Q&A can delete it.

  • Does not physically delete the product Q&A; instead, it changes the deletion status to 'Y' so that it is hidden from the screen.


Revision History

Release v1.04_231120: Improved product Q&A modification API

Authorizations
Path parameters
questNostringRequired

string

Header parameters
AuthorizationanyOptional

Access Token

Responses
200

Product Q&A Deletion Success

*/*
anyOptional
delete/v1/qna/adv/{questNo}
DELETE /api/goods/v1/qna/adv/{questNo} HTTP/1.1
Host: api-goods.x2bee.com/
Accept: */*

No content

Last updated