1. Reviews
WiserReview
  • Introduction
  • API Refrences
    • Authentication
      • Generate Token
    • Reviews
      • Get review list
        GET
      • Get reviews by product
        GET
      • Create review
        POST
    • Widgets
      • Star rating
      • Product Review
  • Guides
    • Widgets
      • Plugins
      • Custom site
    • Webhooks
      • Introduction
    • Rich Snippet
      • Product Rich Snippet
  1. Reviews

Create review

POST
/v1/createReview

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.wiserreview.com/api/v1/createReview' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "example@gmail.com",
    "rating": 5,
    "userName": "John K",
    "phoneNumber": "123456789",
    "title": "review title",
    "reviewText": "review text",
    "reviewerImage": "https://wiserreview.com/wp-content/uploads/2025/06/svgexport-16.svg",
    "reviewImages": [
        "https://wiserreview.com/wp-content/uploads/2025/07/V1-2-le.png",
        "https://wiserreview.com/wp-content/uploads/2025/07/Frame-2147226603-4.png"
    ],
    "productName": "Smart phone",
    "productURL": "https://wiserreview.com",
    "productId": "wiser-123",
    "productImageURL": "https://embed.wiserreview.com/review-media/dashboard/preview_5.jpg",
    "orderId": "ord-8956",
    "isVerified": true,
    "isRecommended": true,
    "youtubeURL": "link",
    "xURL": "x link",
    "linkedinURL": "link",
    "instagramURL": "link",
    "city": "New York",
    "state": "New York",
    "country": "USA",
    "ipAddress": "12.0.0.1",
    "latitude": "25.32465.547.54",
    "longitude": "564.5646.65.45",
    "skuId": "sku id here",
    "variantId": "product variantId",
    "skuTitle": "sku title",
    "companyDesignation": "owner",
    "companyName": "Wiserreview",
    "companySiteURL": "https://wiserreview.com",
    "companyLogo": "https://wiserreview.com/wp-content/uploads/2025/06/svgexport-16.svg"
}'
Response Response Example
{}
Modified at 2026-01-12 07:09:29
Previous
Get reviews by product
Next
Star rating
Built with