Update an Exhibitor
The Update Exhibitor API allows event organizers and portal administrators to modify the details of an existing exhibitor who is participating in an event. This endpoint is particularly useful when an exhibitor updates their booth information, changes their contact details, or revises their company website, description, or associated metadata. The update ensures that all public-facing and internal records reflect the most current exhibitor data.
OAuth Scope
zohobackstage.exhibitor.UPDATE
Path Parameters
- portal_id (Integer)
The unique identifier of your Zoho Backstage portal. This tells the system under which portal the exhibitor exists. For example, "portal_id": 19593237 specifies that the exhibitor is being updated in the portal with ID 19593237. - event_id (Integer)
The unique identifier of the event associated with the exhibitor. For example, "event_id": 20000000345678 indicates that the exhibitor is participating in this specific event. - exhibitor_id (String)
The unique identifier assigned to the exhibitor who is being updated. For example, "exhibitor_id": 5000000067007 identifies the exhibitor to update.
Response Structure and Field Explanations
The body of the request must be in JSON format. You can include one or more of the following fields that need to be updated:
- id (String)
The unique identifier assigned to the exhibitor. This ID is generated by the system and stays the same throughout the exhibitor’s lifecycle. For example, "id": "2000000020001" specifies the updated exhibitor’s unique record ID. - booth_id (String)
The internal system ID of the booth allocated to the exhibitor. This ID helps attendees and organizers locate the exhibitor’s booth. For example, "booth_id": "2000000013071" indicates the booth assigned to the exhibitor. - company_name (String)
The updated name of the exhibitor’s organization. This is displayed on the event website and other promotional material. For example, "company_name": "Zoho Corporation" shows the exhibitor’s company name. - website_url (String)
The updated official website URL for the exhibitor’s company. Attendees can use this link to learn more about the exhibitor’s offerings. For example, "website_url": "https://www.zoho.com" shows the new website address. - amount (Integer)
The total amount billed or paid by the exhibitor. This may include fees for booth space, sponsorship packages, or other services. For example, "amount": 500 indicates the total fee associated with this exhibitor. - currency_code (String)
The three-letter ISO currency code for the amount billed. For example, "currency_code": "USD" specifies that the exhibitor is billed in US Dollars. - company_overview (String)
A detailed overview of the exhibitor’s company. This description helps attendees learn about the exhibitor’s mission, services, and background. For example, "company_overview": "Zoho is a global technology company providing a suite of cloud-based productivity tools." describes the company in detail. - company_short_description (String)
A concise version of the company description suitable for sections with limited space, such as event listings or mobile apps. For example, "company_short_description": "Leading global provider of cloud software." provides a short summary. - company_social_pages (Object)
An object containing links to the exhibitor’s official social media profiles. These links can be displayed on the event site for better networking and visibility. For example, "company_social_pages": { "facebook": "https://www.facebook.com/zoho" } links to the exhibitor’s Facebook page. - contact (Object)
A nested object containing the primary contact person’s details for the exhibitor. This information is used for communication, coordination, and updates related to the event.- first_name (String)
The first name of the exhibitor’s main contact person. For example, "first_name": "John" specifies the contact’s given name. - last_name (String)
The last name (surname) of the exhibitor’s contact person. For example, "last_name": "Doe" specifies the contact’s family name. - email (String)
The official email address of the contact person. This is used for all event-related communication and updates. For example, "email": "john.doe@company.com" shows the contact’s email ID. - mobile_no (String)
The mobile number of the contact person for direct communication. For example, "mobile_no": "9876543210" is the phone number listed for calls or urgent messages.
- first_name (String)
- created_by (Object)
Details of the user who created the exhibitor entry in the system. This information helps maintain an accurate audit trail for record creation.- id (String)
The system-generated unique ID of the user who created the exhibitor entry. For example, "id": "2000000000001" identifies the creator’s user ID. - email (String)
The email address of the creator. This address is used for verification and reference. For example, "email": "john.doe@company.com" shows the creator’s email. - first_name (String)
The display name or first name of the user who added the exhibitor record. For example, "first_name": "John" indicates the creator’s display name. - company (String)
The company associated with the user who created the record. This field may be null if not specified. For example, "company": null" means no company was specified. - designation (String)
The job title or designation of the creator, if available. This field may be null if not provided. For example, "designation": null" indicates that no designation is set for the creator.
- id (String)
- created_time (String)
The timestamp indicating when the exhibitor was first created. The date is in ISO 8601 format in UTC. For example, "created_time": "2025-03-21T06:14:21Z" shows when the record was originally added. - last_modified_by (Object)
Details of the user who last updated the exhibitor record. This structure matches the created_by object and helps track recent changes.- id (String)
The system-generated ID of the user who made the most recent changes. For example, "id": "2000000000001" identifies the last modifier. - email (String)
The email address of the user who performed the last update. For example, "email": "john.doe@company.com" shows the user responsible for the update. - first_name (String)
The display name or first name of the user who last modified the entry. For example, "first_name": "John" indicates who last made changes. - company (String)
The company of the user, if provided. This field may be null if not linked. For example, "company": null" means no company is linked to the user. - designation (String)
The designation of the user at the time of modification, if available. This field may be null if not provided. For example, "designation": null" shows that no title was set for the modifier.
- id (String)
- last_modified_time (String)
The timestamp indicating when the exhibitor was last modified. This follows the ISO 8601 format in UTC. For example, "last_modified_time": "2025-03-21T06:14:21Z" marks the time of the latest update.
URL
Copiedv3/portals/{portal_id}/events/{event_id}/exhibitors/{exhibitor_id}Example
Copiedhttps://zohoapis.com/backstage/v3/portals/19593237/events/2000000345678/exhibitors/5000000067007Sample Response
Copied{
"booth_id": "2000000013071",
"company_name": "Zoho Corporation",
"amount": 500,
"currency_code": "USD",
"company_overview": "Zoho is a global technology company providing a suite of cloud-based productivity tools.",
"company_short_description": "Leading global provider of cloud software.",
"company_social_pages": {
"facebook": "https://www.facebook.com/zoho"
},
"contact": {
"email": "john.doe@company.com",
"first_name": "John",
"last_name": "Doe",
"mobile_no": "9876543210"
},
"created_by": {
"company": "Zoho Corporation",
"designation": "Event Manager",
"email": "john.doe@company.com",
"first_name": "John",
"id": "2000000000001"
},
"created_time": "2025-03-21T06:14:21Z",
"id": "2000000020001",
"last_modified_by": {
"company": "Zoho Corporation",
"designation": "Event Manager",
"email": "john.doe@company.com",
"first_name": "John",
"id": "2000000000001"
},
"last_modified_time": "2025-03-21T06:14:21Z",
"website_url": "https://www.zoho.com"
}