Update
Update vendor
POST
https://www.talque.com/webhook/org/:orgId/vendor/update
This endpoint allows you to update vendor. Either the extId
or the vendorId
field must be present to identify which vendor to update. If both are present then the extId
field of the specified vendor is updated.
Apart from having to specify the ID (either internal or external), all other parameters are optional. Fields that are not included remain unchanged by the webhook call.
The parameters marked with COMING SOON: are not yet implemented.
You can find a basic example at https://github.com/talque/webhook-samples/blob/main/src/vendor/update.py
Request Body
extId
string
External ID of the vendor to update
vendorId
string
Internal (talque) ID of the vendor to update.
name
object
Vendor name (translated text)
description
object
A translated text
customData
object
COMING SOON: A custom data object
exhibitor
string
The exhibitor category. Can be null.
sponsor
string
The sponsor category. Can be null.
businessAreas
array
The vendor filter tags
string
Company contact email address
phone
string
Company contact phone number
hall
string
Booth hall ID
booth
string
Booth ID
address
string
Company street address
zipCode
string
Company ZIP code
city
string
Company city
country
string
Company country: a value of country enum
string
Company Facebook profile URL
string
Company LinkedIn profile URL
string
Company Twitter profile URL
string
Company Xing profile URL
string
Company Instagram URL
website
string
Company website URL
photo
string | null
A temp file ID, or null to delete
backgroundImage
string | null
A temp file ID, or null to delete
staff
string[]
staffPending
string[]
admins
string[]
isSelfSelect
boolean
COMING SOON: A boolean value
staffCanMeet
boolean
COMING SOON: A boolean value
staffCanChat
boolean
COMING SOON: A boolean value
locale
string
video
object
A translated text object with the video URLs
gallery
object
A gallery change object
clearGallery
boolean
Whether to delete all gallery objects that are not referenced
portfolio
object
A portfolio change object
clearPortfolio
boolean
Whether to delete all portfolio objects that are not referenced
marks
string[]
A list of vendor tags
perks
string[]
A list of perk ids
main
string[]
A list of vendor IDs
adminName
object
A translated text for an internal (admin-only) name for the vendor
buttons
array
Array of {url, label}
objects for custom buttons to display on the company profile
Example Request
Last updated