talque
  • External integrations for talque
  • JSON API (readonly)
    • General
      • Locales and Text
    • Organization
      • Read
    • Lecture
      • List
      • Read
      • Files
      • Authorization
    • Speaker
      • List
      • Read
      • Authorization
    • Participants
    • Vendors
      • List
      • Read
      • Authorization
    • Room
      • List
      • Read
    • Enumerations
      • Locale
  • Deep links
    • General
    • Organization
    • Profile links
    • Lecture links
    • Partner links
    • Post links
    • Map links
    • Video rooms
  • Webhooks
    • General
    • Authentication
    • File upload
    • Users
    • Invites
    • Tickets
    • Vendors
      • Create
      • Update
      • Delete
    • COMING SOON: Announcements
    • COMING SOON: Lectures
    • Map Data
      • Map layer
      • Map features
      • Update references
  • COMING SOON: Chat Bots
  • Wordpress Plugin
    • Installation
    • Pages
    • Shortcodes
      • Filters
      • Optional settings
    • Routing
    • Configuration
  • Javascript plugin
    • Introduction
    • Installation
      • Initial page
      • Filters
      • Optional settings
    • Routing
    • Configuration
  • Single Sign-On
    • OAuth2 Login
    • Website data
    • OAuth2 Flow
      • Request an Authorization Code
      • Exchange for Access Token
      • Authorized Requests
  • SELF-SERVICE LINKS
    • Event Ticket Token
  • Old Wordpress Plugin
    • Download
    • Pages
    • Shortcodes
    • Filter Options
    • Style Options
  • Old Javascript Plugin
    • Introduction
    • Routing
    • Installation
  • Troubleshooting
    • Firewall Configuration
  • Talque Plugin
    • Download
    • Installation
    • Configuration
Powered by GitBook
On this page

Was this helpful?

  1. Webhooks

Users

Some APIs require you to identify users, for example to set someone as a vendor admin. Furthermore, there are two different notions of "user" that are needed for different purposes, either

  • Someone who is reachable by email (identified by account id). This always exists for a given email address.

  • A profile that is part of the network (identified by a profile id). This may not exist.

Look up by email

POST https://talque.com/webhook/org/:orgId/profile/email-lookup

Discover the account and profile id for a given email address. The profile id can be null if there is no profile. In addition, basic user and profile data is returned.

The input email is matched against the primary or an alias email of potentially existing users, in which case the returned account data will have the primary email address. The output orgProfile is only listed if the user is already participant of the network.

Body

Name
Type
Description

email

string

Valid email address

firstName

string

Optional first name of the user, may be used in transactional emails

lastName

string

Optional last name of the user, may be used in transactional emails

locale

string | null

Response

{
   "accountId": "iu9AuaYoIPHTgtCB43z0",
   "profileId": "pFs6jhrgEH6o50rYwJvy",
   "account": { ... },
   "orgProfile": { ... },
}
{
  "error": "Invalid request"
}
PreviousFile uploadNextInvites

Last updated 8 months ago

Was this helpful?

Optional

language preference