iMIS API

The iMISΒ API action allows staff to make any iMIS REST API call without manually managing the connection. The appropriate URL and API token are generated automatically.

This action supports GET, POST, PUT, and DELETE actions, and allows you to specify any API endpoint after /api/. Automatic retries on failure are enabled by default to handle transient network issues.

InputOutput
Any (`JSON`)- Any (`JSON`) (Passthrough)
- Response Data (`object`) (Optional)

Properties

These properties control the behavior and structure of the iMISΒ API action:

NameTypeTemplatableNotes
MethodChoice
- GET
- POST
- PUT
- DELETE
NoSelect the correct HTTP verb for the operation.
PathTextYesThe URL path after /api/. Do not include a leading slash (/) or `/api/`. For example, to call `/api/party`, simply enter `party`. Or, to fetch a specific panel record by its identity: `myPanel/1234`
Query StringListYes(Optional) The query string parameters to pass in.. Note: The query string parameters can be specified here or in the Path parameter. If specified in both places, the values in this Query String list are appended after the Path value.
BodyTextYes(Optional) Specify the body to include. Only supported and sent if this is a POST or PUT operation.
Attempt CountNumberYesSpecify the number of repeated attempts to make if the API returns an error. The action will pause for 5 seconds between each attempt. Value must be between 1 and 10. The default value is 3.
Fetch All Pages Coming SoonCheckboxNoIf checked, and if the endpoint returns a paginated result, this action will loop through each page and fetch the entire dataset, not just the first page.. Warning: Feature not available - coming soon.
Output PropertyTextNoTo capture the API call response, specify the name of the property to write the output to. The output is in the following format, assuming that the output property name is β€œapiResult”: β€œapiResult”: {β€œstatusCode”: 200, β€œheaders”: { β€œTransfer-Encoding”: β€œchunked”, β€œServer”: β€œMicrosoft-IIS/10.0”, β€œX-Powered-By”: β€œASP.NET”, β€œDate”: β€œWed, 14 Aug 2024 16:02:27 GMT” }, β€œbody”: { ... /* iMIS API Response here */ ... }}

Did this page help you?