Creates new conversation question.

JSON Body Attributes

You should POST a json object with the following attributes. You have a choice of either posting using the product SKU or using automotive attributes.

Creating a question with SKU

AttributeDescription
skuproduct sku
first_namefirst name of the person that asked the question (optional, default: A shopper)
emailemail of the person that asked the question
questionthe question asked in this conversation

Creating a question with automotive attributes

AttributeDescription
manufacturermandatory
modelmandatory
axleoptional
body_typeoptional
doorsoptional
engine_sizeoptional
engine_size_in_litresoptional
fuel_typeoptional
model_displayoptional
model_variantoptional
model_from_monthoptional
model_from_yearoptional
model_to_monthoptional
model_to_yearoptional
model_yearoptional
transmissionoptional
usedoptional
vehicle_typeoptional

Example JSON Object

{
   "sku": "AIPTPDV5700",
   "first_name": "Joe",
   "email": "[email protected]",
   "question": "How is this product?"
}
curl --header "Content-Type: application/json" \
  --request POST \
  --data '{"sku": "AIPTPDV5700","first_name": "Joe","email": "[email protected]","question": "Test question about a product?"}' \
  --header 'authorization: Basic VGVzdF9rZXlfMDAwOlRlc3Rfc2VjcmV0XzAwMA==' \
  https://api.reevoocloud.com/v4/organisations/D10/conversations
Language
Authentication
Basic
base64
:
Click Try It! to start a request and see the response here!