Data Integration
- Data Integration
- All Products
/public/core/v3/Orgs/<organization ID>/TrustedIP
Field
| Type
| Description
|
---|---|---|
orgId
| String
| Organization ID.
|
enableIP
| Boolean
| Whether IP address filtering is enabled.
|
ipRanges
| List
| Trusted IP address ranges for the organization.
|
startIP
| String
| Included in the ipRanges object.
The first IP address in a range of trusted IP addresses.
|
endIP
| String
| Included in the ipRanges object.
The last IP address in a range of trusted IP addresses.
|
GET <baseApiUrl>/public/core/v3/Orgs/6MRgiMIfvdRfUuCCCLICcI/TrustedIP
{ "id": "6MRgiMIfvdRfUuCCCLICcI", "enableIP": false, "ipRanges": [ { "startIP": "10.29.5.1", "endIP": "10.29.5.2" } ] }
/public/core/v3/Orgs/<organization ID>/TrustedIP
Field
| Type
| Required
| Description
|
---|---|---|---|
enableIP
| Boolean
| No
| Whether to enable IP address filtering. If enabled, at least one IP address range must be specified.
|
ipRanges
| List
| No
| IP address ranges for the organization.
|
startIP
| String
| No
| Include in the ipRanges object.
The first IP address in a range of trusted IP addresses.
|
endIP
| String
| No
| Include in the ipRanges object.
The last IP address in a range of trusted IP addresses.
|
PUT <baseApiUrl>/public/core/v3/Orgs/6MRgiMIfvdRfUuCCCLICcI/TrustedIP Content-Type: application/json Accept: application/json INFA-SESSION-ID: 9KA11tLGqxVcGeul8SQBK3 { "enableIP": true, "ipRanges": [ { "startIP": "10.29.4.5", "endIP": "10.29.5.2" } ] }
{ "id": "6MRgiMIfvdRfUuCCCLICcI", "enableIP": true, "ipRanges": [ { "startIP": "10.29.4.5", "endIP": "10.29.5.2" } ] }
PUT <baseApiUrl>/public/core/v3/Orgs/6MRgiMIfvdRfUuCCCLICcI/TrustedIP Content-Type: application/json Accept: application/json INFA-SESSION-ID: 9KA11tLGqxVcGeul8SQBK3 { "enableIP": true, "ipRanges": [{"startIP": "10.29.4.5", "endIP":"10.29.5.2"}, {"startIP": "10.29.10.1", "endIP":"10.29.10.5"}, {"startIP": "10.29.11.1", "endIP":"10.29.11.5"}] }
{ "id": "6MRgiMIfvdRfUuCCCLICcI", "enableIP": true, "ipRanges": [ { "startIP": "10.29.4.5", "endIP": "10.29.5.2" }, { "startIP": "10.29.10.1", "endIP": "10.29.10.5" }}, { "startIP": "10.29.11.1", "endIP": "10.29.11.5" } ] }