POST
/
api
/
v1
/
action-types
curl --request POST \
  --url https://cloud.bytebeam.io/api/v1/action-types \
  --header 'Content-Type: application/json' \
  --header 'x-bytebeam-api-key: <api-key>' \
  --header 'x-bytebeam-tenant: <api-key>' \
  --data '{
  "payload_type": "json",
  "json_schema": {},
  "json_ui_schema": {},
  "timeout": 123,
  "icon": "pencil",
  "type": "<string>"
}'

Authorizations

x-bytebeam-api-key
string
header
required

API key required to authenticate requests.

x-bytebeam-tenant
string
header
required

Tenant(Project) name required to identify the project.

Body

icon
enum<string>
required
Available options:
pencil,
move,
money,
protect
type
string
required

Enter action type name

payload_type
enum<string>
Available options:
json,
none,
text,
file
json_schema
object
json_ui_schema
object
timeout
integer | null