Login to DataGOL
Getting Started
Login to DataGOL
1️⃣ Overview
Purpose:
Authenticates a user into the DataGOL Platform.
On success, it returns the user’s profile, including their administrative roles and assigned permissions within the workspace.
2️⃣ Endpoint
POST /idp/api/v1/user/login
Base URL:
https://be.datagol.ai
3️⃣ Request Headers
| Header | Required |
|---|---|
| Content-Type: application/json | ✅ Yes |
4️⃣ Request Body Schema
{
"email": "string",
"password": "string"
}
5️⃣ Field Descriptions
Login Fields
| Field | Type | Description |
|---|---|---|
| string | The registered email address (e.g., sample_email@datagol.com). | |
| password | string | The user’s account password. |
6️⃣ Example Request
curl -X POST https://be.datagol.ai/idp/api/v1/user/login \
-H "Content-Type: application/json" \
-d '{
"email": "sample_email@datagol.com",
"password": "UserPassword123"
}'
7️⃣ Behavior Summary
Authenticates a user into the DataGOL Platform and returns the user profile with administrative roles and workspace permissions.
POST
Login to DataGOL