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.
POST /idp/api/v1/user/login
Base URL:
https://be.datagol.ai
| Header | Required |
|---|---|
| Content-Type: application/json | ✅ Yes |
{
"email": "string",
"password": "string"
}
| Field | Type | Description |
|---|---|---|
| string | The registered email address (e.g., sample_email@datagol.com). | |
| password | string | The user’s account password. |
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"
}'
Authenticates a user into the DataGOL Platform and returns the user profile with administrative roles and workspace permissions.