get_current_user
Retrieve the authenticated Eventbrite user's profile to verify token access and get their ID, name, and email for API calls.
Instructions
Get Current User
Endpoint: GET /users/me/
Returns information about the currently authenticated user (the user whose API token is being used).
Authentication: Requires a valid Eventbrite API token.
Use Cases:
Verify authentication and token validity
Get current user's ID for other API calls
Display user information in applications
Check user's name and email
Verify user permissions and access
Response Fields:
id: User ID
name: User's full name
first_name: User's first name
last_name: User's last name
email: User's email address
emails: Array of email objects with verification status
image_id: User's profile image ID
Error Codes:
401: Authentication required or invalid token
403: Token lacks required permissions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||