Waiting for engine...
Skip to main content

Boomi MFT - AFT Management API Reference (v1) - Users

Toggle Pane

Download OpenAPI Specification: Download

Users

Authenticates a user and returns access tokens

Supports MFA authentication for enhanced security. API Keys are the recommended method for programmatic access. For MFA setup, send initial request with username and password only to receive MFA challenge.

Authorizations:
ApiKeyBearer
Request Body schema:

Login credentials including username, password, and optional MFA code

password
required
string non-empty
userName
required
string non-empty
oneTimePasscode
string or null

Responses

Response Schema:
accessToken
string or null
refreshToken
string or null

Request samples

Content type
{
  • "userName": "string",
  • "password": "string",
  • "oneTimePasscode": "string"
}

Response samples

Content type
No sample

Refreshes an expired access token for continued access

Authorizations:
ApiKeyBearer
Request Body schema:

Refresh token model containing the refresh token

refreshToken
string or null

Responses

Response Schema:
accessToken
string or null
refreshToken
string or null

Request samples

Content type
{
  • "refreshToken": "string"
}

Response samples

Content type
No sample

Resends MFA verification code for authentication

Authorizations:
ApiKeyBearer
Request Body schema:

Resend MFA model containing SID and email for code delivery

sid
required
string non-empty
email
string or null

Responses

Request samples

Content type
{
  • "sid": "string",
  • "email": "string"
}

Response samples

Content type
No sample