POST
/
logins
/
create
curl --request POST \
  --url https://api.kaizenautomation.com/logins/create \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "authenticationUrl": "<string>",
  "homeUrl": "<string>",
  "loginConfiguration": {
    "username": "<string>",
    "email": "jsmith@example.com",
    "phone": "<string>",
    "twoFactorAuthConfiguration": {
      "method": "Email",
      "alwaysRequired": true,
      "twoFactorAuthEmail": "<string>",
      "totpSecretKey": "<string>"
    },
    "password": "<string>"
  },
  "proxy": {
    "username": "<string>",
    "password": "<string>",
    "server": "<string>"
  },
  "persistSession": true
}'
{
  "id": "<string>",
  "organizationId": "<string>",
  "name": "<string>",
  "authenticationUrl": "<string>",
  "homeUrl": "<string>",
  "loginConfiguration": {
    "username": "<string>",
    "email": "jsmith@example.com",
    "phone": "<string>",
    "twoFactorAuthConfiguration": {
      "method": "Email",
      "alwaysRequired": true,
      "twoFactorAuthEmail": "<string>"
    }
  },
  "proxy": {
    "username": "<string>",
    "server": "<string>"
  },
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "persistSession": true
}

Body

application/json

Login creation parameters

The body is of type object.

Response

201
application/json

Login created successfully

The response is of type object.