Delete an Exhibitor

The Delete Exhibitor API allows event organizers and portal administrators to remove an existing exhibitor from a specific event in their Zoho Backstage portal. Use this endpoint to permanently delete an exhibitor’s company details, booth assignment, contact information, billing data, and social media handles. This ensures your event exhibitor list remains accurate and up to date.

 

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

 

OAuthScope

zohobackstage.exhibitor.DELETE

 

Path Parameters

  • portal_id (Integer)
    The unique identifier of your Zoho Backstage portal. This tells the system which portal the exhibitor belongs to. For example, "portal_id": 19593237 specifies that the exhibitor will be deleted from portal ID 19593237.
  • event_id (Integer)
    The unique identifier of the event linked to the exhibitor. For example, "event_id": 2000000345678 indicates that the exhibitor is linked to this specific event.
  • exhibitor_id (String)
    The unique identifier of the exhibitor you want to delete. For example, "exhibitor_id": 5000000059025 specifies the exhibitor to be removed.

 

Response Structure and Field Explanations

A successful API call returns a JSON response confirming that the exhibitor has been deleted from the specified event. The response includes a status code and a message for verification.

  • status_code (String)
    The HTTP status code that confirms the request was successful. For example, "status_code": "200" indicates that the exhibitor was deleted successfully.
  • message (String)
    A confirmation message indicating that the exhibitor has been deleted. For example, "message": "Exhibitor deleted" confirms the deletion.

URL

Copiedv3/portals/{portal_id}/events/{event_id}/exhibitors/{exhibitor_id}

Example

Copiedhttps://zohoapis.com/backstage/v3/portals/19593237/events/2000000345678/exhibitors/5000000059025

Sample Response

Copied{
  "status_code": "200",
  "message": "Exhibitor deleted"
}