Inputs
Body and Content Type are hidden for
GET and DELETE requests.
Body types
Known text types—includingapplication/json, text/plain, text/csv, and
XML—use a string body. Known binary types—including multipart/form-data,
application/pdf, and common image types—use a file body. You can also enter a
custom MIME type; in that case the body accepts any compatible value.
A header added under Headers takes precedence over the value generated by
Content Type when both use the same header name.
Outputs
The action returns normally for non-success status codes. Branch on Status
when a workflow must treat
4xx or 5xx responses differently.
Example: send JSON to an API
Set Method toPOST, Content Type to application/json, and connect a
JSON string to Body:
Troubleshooting
The action returns Invalid URL
The action returns Invalid URL
Use a complete public URL, including
https://. Internal, loopback, and
private destinations are blocked.A binary response looks corrupted
A binary response looks corrupted
Response is always read as text. Use an integration that returns a file
when the response must preserve raw bytes.
The API says the body format is wrong
The API says the body format is wrong
Confirm that Content Type matches the actual payload. Selecting
application/json does not serialize an object automatically; Body must
already be a JSON string.