---
title: "Using GET Method With REST Service Integration"
slug: "using-get-method-with-rest-service-integration"
description: "This document shows how to create a REST Service Integration that uses the GET method, to obtain information externally from within Decisions. The example demonstrates how to do this using a work flow that makes a call to the free weather API from APIXU. "
tags: ["GET", "API", "Rest integration"]
updated: 2025-06-25T14:28:03Z
published: 2025-06-25T14:28:03Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.decisions.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Using GET Method With REST Service Integration

## Overview

The GET method is an HTTP call that can be made to the URL defined in a REST Service. The GET method retrieves data from a server at the specified resource (e.g.,/users).

For more information on the REST Service, see [REST Service Integration Overview](https://documentation.decisions.com/v9/docs/rest-service-integration-overview).

## Example

A REST Service will be created with the GET method in this example. This example will utilize the API that tracks the International Space Station information.

For more information on the API, visit [Where The ISS At](https://wheretheiss.at/w/developer).

1. In a Designer Project, click CREATE DATATYPE/INTEGRATION and select**External Services**. Click **Add REST Service.**![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-25_10h08_26.png)Best PracticesThough it is possible to create a REST integration via Add REST Service Integration within the Integrations Folder, creating an integration within a Designer Project is advised instead. This allows the user more mobility with the project, should they wish to export/import the integration to another instance and for ease of access purposes.
2. In the Add REST Service window, enter a name for the service in the**Service Name** field and "https://api.wheretheiss.at/v1/"****for the******Service URL**. Click SAVE INTEGRATION to save and close.![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-25_10h09_55.png)
3. Click All from the Global Action Bar in the folder for the created REST Integration and select **Add Method to Service**.![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-25_10h12_05.png)
4. On the **New REST Service Method** window, enter "ISS GET Method" for the **Name**field. In the **URL (Relative to Base)** field, enter "satellites". This will point the service to a specific aspect of the API. Select **GET**for the **HTTP Method** field.
5. Click OK****to save and exit the method configuration window.![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-25_10h13_37.png)
6. In the Designer Project, click CREATE FLOW and select **Flow**. Name the Flow and click CREATE.
7. In the Flow Designer, navigate to**Integrations > REST Services > [REST SERVICE]**and select the GET method step created.
8. Connect the **Done** and **Error** paths to the **End s**tep. Click **Save**to save changes to the Flow.![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-25_10h26_33.png)

## Debug

1. Click **Debug**on the top action panel. Click START DEBUGGING.After the debugger runs, it will return the expected data of the satellite's name and NORAD catalog id, Status Code of 200, and the data of the Headers from the GET call.

![](https://cdn.document360.io/6ef8bcc1-6489-4486-9ad1-83acff7e5df0/Images/Documentation/2025-06-25_10h27_25.png)
