Meetra AI
  • Welcome to Meetra AI API
  • Meetra AI Conversation Intelligence API Building Blocks
  • Meetra AI Conversation Intelligence API Reference
    • User Login
    • Upload Audio / Video material
    • Speaker Detection
    • Rename Speaker
    • Speaker Balance Score
    • Topic Dynamics & Details
    • Speaker Key Points
    • Conversation and Speaker Summaries
    • Conversation Topics and Keywords
    • Questions Asked
    • Conversation Transcript
    • Conversation Dynamics
    • Conversation Emotions
    • Speaker Emotions Over Time
    • Sentiment Score
    • Conversational Energy
    • Interaction Score
    • Interaction Strength Between Speakers
    • Speaker Audio Quality
    • Individual Speaker Balance
  • Built with Meetra AI
    • 🌟NorthStar
      • Example: Meeting Quality Analysis
  • Contact Us
  • Tech Stack and Models
    • Project Structure
    • Database Structure
    • General Audio Processing Flow
    • Security Considerations
    • Open Source Usage in the Codebase
Powered by GitBook
On this page
  • Endpoint
  • Parameters
  • Request Body
  • Responses
  • Example
  • Error Codes
  1. Meetra AI Conversation Intelligence API Reference

User Login

API endpoint for user login through the Meetra AI API.

Endpoint

POST /api-login

Parameters

Name
Type
Description

payload

Object

User login credentials (email and password)

Request Body

The request body should contain a JSON object with the following properties:

{
  "email": "string",
  "password": "string"
}

Responses

HTTP Code
Description

200

Success. Returns a JSON response containing the JWT token.

400

Bad request. Invalid email or password.

Success Response

HTTP Code: 200

Response Body:

{
  "token": "<JWT_token>"
}

Error Response

HTTP Code: 400

Response Body:

{
  "message": "Invalid email or password"
}

Example

Request

POST /api-login
Content-Type: application/json

{
  "email": "example@example.com",
  "password": "password123"
}

Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
}

Error Codes

HTTP Code
Description

400

Invalid email or password.

PreviousMeetra AI Conversation Intelligence API ReferenceNextUpload Audio / Video material

Last updated 1 year ago