Create a reply

POST/products/{product_id}/questions/{question_id}/replies

Publishes a support reply to a question or saves a draft reply. Requires an Idempotency-Key header.

With status set to published (the default), the reply is published with the requested visibility (public by default) and any saved draft is discarded. A question has a single support reply: if one already exists, its content is replaced. The user is notified only when the reply is first published, and only public replies generate events.

With status set to draft, the content is saved as the question's draft reply without publishing it, and visibility is ignored. The draft does not affect any reply already visible to the user.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

product_id*string
question_id*string

Header Parameters

Idempotency-Key*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/products/string/questions/string/replies" \  -H "Idempotency-Key: string" \  -H "Content-Type: application/json" \  -d '{}'
Empty