You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Request session; expiresIn optional; either userId or email must be specified
Scala
object CreateSession
The most direct way to specify a user is with the userId field. Alternatively, an email field can be
provided, which must contain an email address belonging to a user. If the userId does not exist,
or no user can be found with the provided email, then the request will fail with a 400 status.
The deprecated expiresIn field is no longer used by the API, but will still be validated if provided in
the request body. It is therefore recommended to avoid including it.
{"error": 400, "message": "Missing field: userId or email"} At least one of userId and email must be provided.
404
{"error": 404, "message": "User '$userId' not found"} The userId field was specified in the request body with an invalid ID.
403
{"error": 403, "message": "Insufficient permissions (must be a partner)"} The provided SID is not a partner key, or does not belong to an authenticator or an admin of an org that the specified user is a member of.