Skip to main content
POST
/
products
/
{productId}
/
questions
Submit Question (Server-to-Server)
curl --request POST \
  --url https://cdn.tailoredd.com/apiV2/products/{productId}/questions \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "Server-synced product question",
  "authorName": "ERP Sync Job",
  "authorEmail": "ops@example.com",
  "externalProductId": "product-123"
}
'
{
  "success": true,
  "data": {}
}
POST {BASE_URL}/products/{productId}/questions
Legacy route POST /questions is deprecated — use the product-scoped route above.

Body parameters

text
string
required
Question text.
authorName
string
required
Customer display name.
authorEmail
string
required
Customer email.
externalProductId
string
required
Product ID.
{
  "text": "Is this available in blue?",
  "authorName": "Jane Smith",
  "authorEmail": "jane@example.com",
  "externalProductId": "SKU-001"
}

Headers

X-Merchant-Id
string
X-API-Key
string

Path Parameters

productId
string
required

Body

application/json

The body is of type object.

Response

Successful response

success
boolean
required
Example:

true

data
object