List

List vendors

POST https://event.talque.com/api/v1/vendor/list

This endpoint allows you to list all vendors in the organization. You can find a basic example at https://github.com/talque/webhook-samples/blob/main/src/vendor/list.py

Request Body

Name
Type
Description

orgId*

string

Organization identifier

cursor

string | null

Pagination cursor

limit

int

Page size

{
    "reason": "SUCCESS",
    "reasonEnum": "VendorListReason",
    "success": true,
    "vendors": [
        {
            "address": null,
            "backgroundImage": "https://path/to/image.png",
            "booth": null,
            "country": null,
            "ctime": 1587067562992,
            "customData": {
                "data": []
            },
            "description": {
                "EN_US": "*bold* description"
            },
            "descriptionHtml": {
                "EN_US": "<div>\n<p><b>bold</b> description</p>\n</div>"
            },
            "email": "vendor@example.com",
            "exhibitor": null,
            "extId": null,
            "facebook": "",
            "gallery": {
                "config": {
                    "embed": 0,
                    "image": 20,
                    "limit": 0,
                    "video": 0
                },
                "items": []
            },
            "instagram": "",
            "isPublished": true,
            "linkedin": "",
            "locale": "EN_US",
            "main":[],
            "mtime": 1587067562992,
            "name": {
                "EN_US": "Partner Name"
            },
            "phone": null,
            "photo": "https://path/to/photo.png",
            "photoMedium": "https://path/to/photo-medium.png",
            "portfolio": {
                "config": {
                    "document": 0,
                    "limit": 0
                },
                "items": []
            },
            "sponsor": "partner",
            "subjects": [],
            "twitter": "https://twitter.com/example",
            "vendorId": "ZaZOqly9jKfdzHVYZdOw",
            "website": "vendor.example.com",
            "xing": ""
        }
    },
    "cursor": "SundEjKdcmYHhBw1OUPYPmfyJjvautuu",
    "more": true,
}

Example Request

Example Response

Last updated

Was this helpful?