mirror of
https://github.com/dkershner6/post-api-call-action.git
synced 2024-11-15 14:33:52 +08:00
21 lines
478 B
YAML
21 lines
478 B
YAML
name: 'POST API Call Action'
|
|
description: 'Send a POST request'
|
|
author: 'Derek Kershner'
|
|
branding:
|
|
icon: 'bell'
|
|
color: 'yellow'
|
|
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: 'lib/main.js' |