User Login
API endpoint for user login through the Meetra AI API.
Endpoint
POST /api-loginParameters
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:
Error Response
HTTP Code: 400
Response Body:
Example
Request
Response
Error Codes
HTTP Code
Description
400
Invalid email or password.
Last updated