Authentication
Browser Sessions
Environments
Workflows
- POSTCreate a new workflow
- POSTExecute a workflow
- POSTExecute a workflow synchronously
- POSTList workflows
- POSTGet workflow
- POSTUpdate workflow blocks
- POSTSet workflow parameter schema
- POSTCreate workflow schedule
- POSTList workflow schedules
- POSTDelete workflow schedule
- POSTUpdate workflow schedule
- POSTDuplicate workflow
- POSTDelete workflow
Workflow Parameters
Instructor
API Reference
Create a login
Creates a new login with required credentials
POST
/
logins
/
create
Create a login
Copy
Ask AI
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
}'
Copy
Ask AI
{
"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
.
Create a login
Copy
Ask AI
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
}'
Copy
Ask AI
{
"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
}
Assistant
Responses are generated using AI and may contain mistakes.