FunctionCopy link to clipboard
a!httpResponse( statusCode, headers, body )
Returns an HTTP Response object for use in a Web API.
See also: Web APIs, a!httpheader()
ParametersCopy link to clipboard
Keyword | Type | Description |
---|---|---|
|
Number (Integer) |
The status code of the response. Default is "200" meaning successful completion of the request. |
|
List of HttpHeader |
A list of headers for the response. Built with a!httpheader(). Header values set using a!scsField() will be ignored. |
|
Text |
The body of the response. This value can be either text or a document. If a document is supplied, default headers will be set and the client browser will attempt to open the document. Some documents, such as images, sound files, and PDFs, can be effectively viewed within your browser window. Other documents, such as Microsoft Office files, may be downloaded for local viewing. |
ReturnsCopy link to clipboard
HTTP Response
ExamplesCopy link to clipboard
To test these examples, paste them into the expression editor of a Web API object. You can view the test results from within the designer by clicking the Test Request button. You can also view the runtime results in your browser by clicking the URL.
Returning a JSON bodyCopy link to clipboard
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
a!httpResponse(
statusCode: 200,
headers: {
a!httpHeader(name: "content-type", value: "application/json")
},
body:{
{
firstName: "Jane",
lastName: "Doe",
age: 35
},
{
firstName: "John",
lastName: "Smith",
age: 42
}
}
)
Copy
Returning a document as the bodyCopy link to clipboard
1
2
3
4
5
6
7
8
a!httpResponse(
statusCode: 200,
headers: {
a!httpHeader(name: "content-type", value: "application/json")
},
body: a!iconIndicator("STATUS_WARN")
)
Copy
Feature compatibilityCopy link to clipboard
The table below lists this function's compatibility with various features in Appian.
Feature | Compatibility | Note |
---|---|---|
Portals | Partially compatible | Can be used with Appian Portals if it is connected using an integration and web API. |
Offline Mobile | Partially compatible | Can be used with offline mobile if it is loaded at the top of the form. |
Sync-Time Custom Record Fields | Incompatible | |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Incompatible | Cannot be used to configure a process report. |
Process Events | Incompatible | Cannot be used to configure a process event node, such as a start event or timer event. |
Process Autoscaling | Compatible |
Old versionsCopy link to clipboard
There are older versions of this function . You can identify older versions by looking at the name to see if there is a version suffix. If you are using an old version, be sure to refer to the corresponding documentation from the list below.
Old Versions | Reason for Update |
---|---|
a!httpResponse_17r4 | Can now return documents through Web APIs so that other systems can access Appian documents. |
To use the latest version of the function, replace the function with a version suffix with a new function reference.
To learn more about how Appian handles this kind of versioning, see the Function and Component Versions page.