post-api-call/action.yml
2021-05-22 09:25:41 -07:00

21 lines
481 B
YAML

name: 'POST API Call Action'
description: 'Send a POST request'
author: 'Derek Kershner'
branding:
icon: 'phone'
color: 'orange'
inputs:
url:
description: 'URL to send post request to'
required: true
data:
description: 'JSON string of data to pass into request'
default: '{}'
required: false
headers:
description: 'JSON string of headers to pass into request'
default: '{}'
required: false
runs:
using: 'node12'
main: 'dist/index.js'