post-api-call/action.yml

21 lines
478 B
YAML
Raw Normal View History

2021-05-22 06:17:43 +08:00
name: 'POST API Call Action'
description: 'Send a POST request'
author: 'Derek Kershner'
branding:
icon: 'bell'
color: 'yellow'
2021-05-22 05:53:33 +08:00
inputs:
2021-05-22 06:17:43 +08:00
url:
description: 'URL to send post request to'
required: true
data:
description: 'JSON string of data to pass into request'
default: '{}'
required: false
2021-05-22 06:18:24 +08:00
headers:
description: 'JSON string of headers to pass into request'
default: '{}'
required: false
2021-05-22 05:53:33 +08:00
runs:
using: 'node12'
2021-05-22 06:17:43 +08:00
main: 'lib/main.js'