Delegated Login

POST /auth/login/delegated

Logs a user into an organization without the user's credentials.

If you want to use your own authentication system, while still using Delegated Signing, you can use this endpoint to authenticate a user without needing the user's credentials.

The user authentication token can be used for read operations within the Dfns API, however, write operations will still require the user to sign the action.

Required Permissions

Name
Conditions

Auth:Login:Delegated

Always Required

Request body

username *

String

The username that identifies the user in the org

Example:

{
  "username": "[email protected]"
}

Responses

  • See Common Errors for common errors.

  • See Delegated Authentication Errors for delegated authentication specific errors.

Success - the user's authentication token

{
  "token": "eyJ0eX...bzrQakA"
}

Last updated