- /
-
- Automations /
- Outbound /
- REST Outbound /
- Flow Designer
Flow Designer
Low-code outbound REST integration
Last modified 2026-03-16
Jace Benson
Table of content
ServiceNow Community - REST in Flow Designer
Flow Designer provides a low-code way to make outbound REST calls without writing scripts.
Cost Warning
⚠️ Uses Integration Hub transactions - check your licensing.
Setup Steps
- Create Connection & Credential Alias (type: Credential)
- Add credentials to the alias (Basic Auth, OAuth, etc.)
- Flow Designer → Action → Add Step → REST
- Configure:
- Connection Alias
- Base URL
- Resource Path
- HTTP Method
- Headers
- Request Content
Example Configuration
Base URL: https://<instance>.service-now.com
Resource Path: /api/now/table/incident
Method: POST
Headers: Accept: application/json
Request Body: {"short_description":"From Flow Designer"}
Parsing Response
Add a Script step to parse the REST response:
(function execute(inputs, outputs) {
var responseBody = JSON.parse(inputs.response);
if (inputs.status != 201) {
var errorMsg = responseBody.error.message;
throw "Error: " + errorMsg;
}
outputs.number = responseBody.result.number;
outputs.short_description = responseBody.result.short_description;
})(inputs, outputs);