Skip to content

congresses

const congresses: {
list: Promise<Event[]>;
get: Promise<Event>;
getAttendees: Promise<Attendee[]>;
getAttendee: Promise<Attendee>;
getBusinessCards: Promise<BusinessCard[]>;
getBusinessCard: Promise<BusinessCard>;
};

Defined in: domains/congresses.ts:8

list(): Promise<Event[]>;

List all lead retrieval events available to the current user.

Promise<Event[]>

Array of Event objects.

MobileLockerError on network failure or server error.

get(eventID): Promise<Event>;

Get a single lead retrieval event by ID.

Parameter Type Description
eventID number The numeric ID of the event.

Promise<Event>

The matching Event.

MobileLockerError on network failure or if the event is not found.

getAttendees(eventID): Promise<Attendee[]>;

Get all attendees for a lead retrieval event.

Parameter Type Description
eventID number The numeric ID of the event.

Promise<Attendee[]>

Array of Attendee objects.

MobileLockerError on network failure or server error.

getAttendee(attendeeID): Promise<Attendee>;

Get a specific attendee by ID.

Parameter Type Description
attendeeID string The attendee’s string ID.

Promise<Attendee>

The matching Attendee.

MobileLockerError on network failure or if not found.

getBusinessCards(): Promise<BusinessCard[]>;

Get all business cards scanned by the current user.

Promise<BusinessCard[]>

Array of BusinessCard objects.

MobileLockerError on network failure or server error.

getBusinessCard(cardID): Promise<BusinessCard>;

Get a specific business card by ID.

Parameter Type Description
cardID string The business card’s string ID.

Promise<BusinessCard>

The matching BusinessCard.

MobileLockerError on network failure or if not found.