POST Request

This operation makes a POST request to a specified url.

This procedure is part of the HTTP Book (BDK). To use this book, you need to learn it in your agent first.

Input Concepts

Concept
Description
Type
Required

url

The URL to make the POST request to.

text

Yes

payload

The payload to include in the request.

file | list of | text

Yes

headers

The headers to include in the request. For example {"Authorization": "Bearer <token>"}. Note: If connect is set, the "Authorization" header will be added automatically to the request, and a manually set "Authorization" header will be ignored.

No

Output Concepts

Concept
Description
Type

answer

The response from the POST request.

file or list of or text

Examples

  1. Create a new post:

create a json
use the above as the post json
set the post json's title to "My Post Title"
set the post json's body to "Awesome Body"
set the post json's userId to 1
post the post json to "https://jsonplaceholder.typicode.com/posts"
  1. Create a new post with an Authentication header:

create a json
use the above as the post json
set the post json's title to "My Post Title"
set the post json's body to "Awesome Body"
set the post json's userId to 1
create a json
use the above as the headers input
set the headers input's "Authentication" to "Bearer <token>"
post the post json to "https://jsonplaceholder.typicode.com/posts"
... the headers is the headers input

Last updated

Was this helpful?