Parameters

review
dictionary
type
string
id
number
title
string
content
string
images
array
rating
number
POST/v1/reviews
curl https://api.tradly.app/v1/reviews \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{
  "review": {
    "type": "listings",
    "id": 13482,
    "title": "Some optional title Red",
    "content": "Some optional desccription XXL L",
    "images": [
      "https://someimage.jpg",
      "https://someimage.png"
    ],
    "rating": 3
  }
}'
RESPONSE
{
  "status": true,
  "data": {
    "review": {
      "id": 1,
      "rating": 5
    }
  }
}