API Documentation
- Analysis
- Authentication
- Conversations
- Job
- Project
- Project Template
- Quality Assurance
- Translation
- User
Authentication
Login to session
POST
/
api2
/
v3
/
auth
/
loginToSession
Login to session
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v3/auth/loginToSession \
--header 'Content-Type: application/json' \
--data '{
"userUid": "<string>",
"userName": "<string>",
"password": "<string>",
"rememberMe": true,
"twoFactorCode": 123,
"captchaCode": "<string>"
}'
Copy
Ask AI
{
"user": {
"firstName": "<string>",
"lastName": "<string>",
"userName": "<string>",
"email": "<string>",
"role": "SYS_ADMIN",
"id": "<string>",
"uid": "<string>"
},
"cookie": "<string>",
"csrfToken": "<string>"
}
Body
application/json
Response
200
application/json
successful operation
The response is of type object
.
Was this page helpful?
Login to session
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v3/auth/loginToSession \
--header 'Content-Type: application/json' \
--data '{
"userUid": "<string>",
"userName": "<string>",
"password": "<string>",
"rememberMe": true,
"twoFactorCode": 123,
"captchaCode": "<string>"
}'
Copy
Ask AI
{
"user": {
"firstName": "<string>",
"lastName": "<string>",
"userName": "<string>",
"email": "<string>",
"role": "SYS_ADMIN",
"id": "<string>",
"uid": "<string>"
},
"cookie": "<string>",
"csrfToken": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.