Skip to content

Workflow Actions REST API (0.0.1)

Overview

These APIs facilitate workflow actions management. Workflow actions are added as steps during workflow configuration.

RateLimit

For the Workflow actions REST APIs the following will be true: Limits are applied to each property. A maximum of 60 calls can be made per second. Each second 30 calls will be returned to be used.

Download OpenAPI description
Languages
Servers
Generated server url

http://localhost:8080/

Enrollment Action API

Manages enrollment actions

Operations

Enrollment Action Files API

Manages enrollment action files

Operations

Upload File

Request

Allows user to upload file.

Body
fileDetailsobject(FileUploadDto)required

Input file.

fileDetails.​namestring[ 1 .. 100 ] charactersrequired

File name.

fileDetails.​typestringrequired

File type.

Value"AUP_FILE"
fileToUploadstring(binary)required

File to be uploaded

{
  "fileDetails": {
    "name": "string",
    "type": "AUP_FILE"
  },
  "fileToUpload": "string"
}

Responses

Uploaded

Body*/*
namestring[ 1 .. 100 ] charactersrequired

File name.

urlstring[ 1 .. 1000 ] charactersrequired

File URL.

typestringrequired

File type.

Value"AUP_FILE"

Get Signed URL for Download

Request

Get signed URL for download.

Path
fileIdstringrequired
No request payload

Responses

Ok

Body*/*
urlstringrequired

File download URL.

Delete File

Request

Delete file.

Path
fileIdstringrequired
No request payload

Responses

OK

Response
No content

Enrollment Action Type API

Manages enrollment actions for specific action types

Operations