Using API to set up your IP allowlist without activating it - Cloud

Talend Cloud APIs User Guide

Version
Cloud
Language
English
Product
Talend Cloud
Module
Talend API Designer
Talend API Tester
Talend Data Preparation
Talend Data Stewardship
Talend Management Console
Content
Design and Development > Designing APIs
Design and Development > Testing APIs
Last publication date
2024-04-03

Use the POST method on the /security/ip-allowlist endpoint to set up your IP allowlist with your IP and keep this list inactive.

In this example, Talend API Tester is used to issue API queries. For further information about Talend API Tester, see Talend Cloud API Tester User Guide.

If you need information about other available endpoints, see the following section about the IP allowlist API endpoints.

Procedure

  1. Open Talend API Tester in your browser and select POST from the Method list.
  2. In the field next to the Method drop-down list, enter the IP allowlist endpoint to be used: https://api.<env>.cloud.talend.com/security/ip-allowlist
    For example, your environment could be:
    • ap
    • eu
    • us
    • us-west
    • au
  3. In the HEADERS area, click Add header and in the name field that is displayed, enter Authorization and in the value field, enterBearer and your personal access token or service account access token. Enter a whitespace to separate Bearer and the token.
  4. In the Body area, enter the following IPs:

    Example

    {
      "description": "description_of_your_IP_allowlist",
      "enabled": false,
      "ips": [
        {
          "description": "description_of_your_IP",
          "ip": "XXX.XX.XXX.XXX"
        }
      ]
    }
  5. Click Send to issue your request.

Results

The status code 201 is returned and your IP allowlist is set up successfully with your IP on this list. But this allowlist is not activated as the enabled parameter was set to false in the query.