Skip to main content
POST
/
api2
/
v3
/
auth
/
loginToSession
Login to session
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v3/auth/loginToSession \
  --header 'Content-Type: application/json' \
  --header 'None: <api-key>' \
  --data '
{
  "userName": "<string>",
  "password": "<string>",
  "userUid": "<string>",
  "rememberMe": true,
  "twoFactorCode": 123,
  "captchaCode": "<string>"
}
'
{
  "user": {
    "firstName": "<string>",
    "lastName": "<string>",
    "userName": "<string>",
    "email": "<string>",
    "role": "SYS_ADMIN",
    "id": "<string>",
    "uid": "<string>"
  },
  "cookie": "<string>",
  "csrfToken": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developers.phrase.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

None
string
header
required

No authentication required. This is used for public endpoints.

Body

application/json
userName
string
required
password
string
required
userUid
string

When not filled, default user of identity will be logged in

rememberMe
boolean
twoFactorCode
integer<int32>

Two-factor authentication code. Required if two-factor authentication is enabled

captchaCode
string

Response

successful operation

user
object
csrfToken
string