Cloutly Reviews API & SDK
  • Introduction
    • Background & Motivations
    • System Overview
    • Setup & Authentication
    • Ping
  • Swagger Docs
    • Swagger Specs
  • Vendor API
    • Create Vendor
    • Get Vendor
    • Update Vendor
  • Review Collection API
    • Send Review Invite
  • Review Submission API
    • Submit Review
  • Review Insights API
    • Get Reviews
    • Get Review Insights
  • Review Widgets SDK
    • Enriched Review Widgets UI
    • Custom HTML Review Widgets
Powered by GitBook
On this page
  • PUT /vendors/{id}
  • Request
  • Response
  • Notes:
  1. Vendor API

Update Vendor

PUT /vendors/{id}

Update vendor. The id is obtained through the Create Vendor and List Vendors endpoint.

Request

PUT https://marketplace.cloutly.com/api/v2/vendors/{id}

{
   // Optional
   "name": "my supplier X",
   "address": "123 abc street, NSW",
   "industry": "New industry",
   "logoUrl": "https://your-hosted-url.com/business-1",
}

Response

{
  "id": "5ef7b45b-2fd2-4719-88fd-96ef62f9d4a4",
  "name": "My Supplier X",
  "address": "123 abc street, NSW"
  ...
}

Notes:

  • Any change to the business properties will not affect the review scanning or authorized sites. This endpoint will update data within our systems only.

  • Adding googlePlaceId in this call with have no effect

PreviousGet VendorNextSend Review Invite

Last updated 8 months ago