curl --request GET \
--url https://devx.{environment}.oleria.io/v1/assigned-applications/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://devx.{environment}.oleria.io/v1/assigned-applications/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://devx.{environment}.oleria.io/v1/assigned-applications/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://devx.{environment}.oleria.io/v1/assigned-applications/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://devx.{environment}.oleria.io/v1/assigned-applications/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://devx.{environment}.oleria.io/v1/assigned-applications/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devx.{environment}.oleria.io/v1/assigned-applications/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "0oa1qcscnzkl4DTym1d8 (Okta)",
"name": "GitHub Enterprise Cloud",
"objectMetadata": {
"ApplicationInstanceId": "<string>",
"GeneratedTime": "2023-11-07T05:31:56Z",
"ObjectOrRelationshipType": "<string>"
},
"globalId": "<string>",
"oleriaObjectMetadata": {
"enrichmentVersion": "<string>",
"generatedTime": "2023-11-07T05:31:56Z"
},
"authenticationRequirements": {
"isMFAAuthority": true,
"isSSOBasedMFARequired": false,
"authenticationKeys": [
"XD+NWux+oeqdAa1eUPtNC06g/HtrzM6AbNiZU2MhHSM="
],
"adaptiveAuthenticationMethodSelectionPolicy": [
{
"policy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
}
}
],
"authenticationMethodSelectionPolicy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
},
"availableAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"enforcedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"passwordPolicy": {
"expirationLengthInDays": 123,
"length": 123,
"reuseDisallowed": true,
"resetViaSelfServiceAllowed": true,
"characters": [],
"mfaRequirements": "Required",
"policyMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"secondaryFactorRequirements": "Required",
"ssoExclusions": [
"user:U_kgDOB7P6Rg (GitHub based on node identifier), 838439349399 (Google Workspace based on user id), user:wiz-inc-4db1c46901 (GitHub based on app slug)"
]
},
"labels": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"objectDirectoryContainerFederation": {
"isFederated": true,
"authenticationKey": "<string>"
},
"objectDirectoryContainerId": "repo:R_kgDOLL0doQ (GitHub based on repository node identifier), 1BUxdX4M-H7X8GKRgTjprJS8fjY_Ij1giE82lQlny2kc (Google Drive based on file id)",
"oauthClientId": "1234567890abcdef.apps.googleusercontent.com",
"samlEntityId": "https://github.com/enterprises/acme-corp",
"vendorName": "Microsoft",
"globalAuthenticationRequirements": {
"isMFAAuthority": true,
"isSSOBasedMFARequired": false,
"authenticationKeys": [
"XD+NWux+oeqdAa1eUPtNC06g/HtrzM6AbNiZU2MhHSM="
],
"adaptiveAuthenticationMethodSelectionPolicy": [
{
"policy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
}
}
],
"authenticationMethodSelectionPolicy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
},
"availableAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"enforcedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"passwordPolicy": {
"expirationLengthInDays": 123,
"length": 123,
"reuseDisallowed": true,
"resetViaSelfServiceAllowed": true,
"characters": [],
"mfaRequirements": "Required",
"policyMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"secondaryFactorRequirements": "Required",
"ssoExclusions": [
"user:U_kgDOB7P6Rg (GitHub based on node identifier), 838439349399 (Google Workspace based on user id), user:wiz-inc-4db1c46901 (GitHub based on app slug)"
]
},
"globalObjectDirectoryContainerId": "<string>",
"enrichedOAuthClientId": "<string>",
"enrichedResolvedDeploymentId": "<string>",
"enrichedSamlEntityId": "<string>"
}{
"code": "BAD_REQUEST",
"message": "The request was malformed."
}{
"code": "UNAUTHORIZED",
"message": "Missing or invalid authentication token."
}{
"code": "FORBIDDEN",
"message": "The token lacks the required scope."
}{
"code": "NOT_FOUND",
"message": "No resource with the given id."
}{
"code": "TOO_MANY_REQUESTS",
"message": "Rate limit exceeded. Retry after the specified interval."
}{
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred."
}Get
Returns an assigned application by its global id. Requires the https://devx.{environment}.oleria.io/read scope.
curl --request GET \
--url https://devx.{environment}.oleria.io/v1/assigned-applications/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://devx.{environment}.oleria.io/v1/assigned-applications/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://devx.{environment}.oleria.io/v1/assigned-applications/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://devx.{environment}.oleria.io/v1/assigned-applications/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://devx.{environment}.oleria.io/v1/assigned-applications/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://devx.{environment}.oleria.io/v1/assigned-applications/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://devx.{environment}.oleria.io/v1/assigned-applications/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "0oa1qcscnzkl4DTym1d8 (Okta)",
"name": "GitHub Enterprise Cloud",
"objectMetadata": {
"ApplicationInstanceId": "<string>",
"GeneratedTime": "2023-11-07T05:31:56Z",
"ObjectOrRelationshipType": "<string>"
},
"globalId": "<string>",
"oleriaObjectMetadata": {
"enrichmentVersion": "<string>",
"generatedTime": "2023-11-07T05:31:56Z"
},
"authenticationRequirements": {
"isMFAAuthority": true,
"isSSOBasedMFARequired": false,
"authenticationKeys": [
"XD+NWux+oeqdAa1eUPtNC06g/HtrzM6AbNiZU2MhHSM="
],
"adaptiveAuthenticationMethodSelectionPolicy": [
{
"policy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
}
}
],
"authenticationMethodSelectionPolicy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
},
"availableAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"enforcedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"passwordPolicy": {
"expirationLengthInDays": 123,
"length": 123,
"reuseDisallowed": true,
"resetViaSelfServiceAllowed": true,
"characters": [],
"mfaRequirements": "Required",
"policyMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"secondaryFactorRequirements": "Required",
"ssoExclusions": [
"user:U_kgDOB7P6Rg (GitHub based on node identifier), 838439349399 (Google Workspace based on user id), user:wiz-inc-4db1c46901 (GitHub based on app slug)"
]
},
"labels": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"objectDirectoryContainerFederation": {
"isFederated": true,
"authenticationKey": "<string>"
},
"objectDirectoryContainerId": "repo:R_kgDOLL0doQ (GitHub based on repository node identifier), 1BUxdX4M-H7X8GKRgTjprJS8fjY_Ij1giE82lQlny2kc (Google Drive based on file id)",
"oauthClientId": "1234567890abcdef.apps.googleusercontent.com",
"samlEntityId": "https://github.com/enterprises/acme-corp",
"vendorName": "Microsoft",
"globalAuthenticationRequirements": {
"isMFAAuthority": true,
"isSSOBasedMFARequired": false,
"authenticationKeys": [
"XD+NWux+oeqdAa1eUPtNC06g/HtrzM6AbNiZU2MhHSM="
],
"adaptiveAuthenticationMethodSelectionPolicy": [
{
"policy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
}
}
],
"authenticationMethodSelectionPolicy": {
"accountConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"assignedApplicationConditions": {
"context": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
],
"overrides": [],
"rootOperator": {
"operator": {
"isArrayGeneratingDynamicValue": true,
"arrayOpKey": {
"keySpecification": {
"parameters": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"value": "<string>"
},
"arrayOpValue": {
"values": [
{
"staticConditionValueData": {}
}
]
}
}
}
},
"authorizedLocations": {
"isInherited": true,
"policy": {
"allowAll": true,
"authorizedLocations": [
{
"typeSpecificData": {
"ipAddressExclusions": [
"<string>"
],
"ipAddressInclusions": [
"<string>"
],
"name": "<string>",
"supplementaryInformation": {
"geoLocation": {
"latitude": 123,
"longtitude": 123
},
"additionalLocationMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
}
}
}
]
}
},
"excludedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"includedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
]
},
"availableAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"enforcedAuthenticationMethods": [
{
"type": "<string>",
"description": "<string>"
}
],
"passwordPolicy": {
"expirationLengthInDays": 123,
"length": 123,
"reuseDisallowed": true,
"resetViaSelfServiceAllowed": true,
"characters": [],
"mfaRequirements": "Required",
"policyMetadata": [
{
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"value": {}
}
]
},
"secondaryFactorRequirements": "Required",
"ssoExclusions": [
"user:U_kgDOB7P6Rg (GitHub based on node identifier), 838439349399 (Google Workspace based on user id), user:wiz-inc-4db1c46901 (GitHub based on app slug)"
]
},
"globalObjectDirectoryContainerId": "<string>",
"enrichedOAuthClientId": "<string>",
"enrichedResolvedDeploymentId": "<string>",
"enrichedSamlEntityId": "<string>"
}{
"code": "BAD_REQUEST",
"message": "The request was malformed."
}{
"code": "UNAUTHORIZED",
"message": "Missing or invalid authentication token."
}{
"code": "FORBIDDEN",
"message": "The token lacks the required scope."
}{
"code": "NOT_FOUND",
"message": "No resource with the given id."
}{
"code": "TOO_MANY_REQUESTS",
"message": "Rate limit exceeded. Retry after the specified interval."
}{
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred."
}Authorizations
OAuth 2.0 client-credentials flow. Request an access token from the token endpoint and send it as Authorization: Bearer <token>.
Path Parameters
Global id of the assigned application.
Response
The assigned application.
An Oleria AssignedApplication represents an IDP's knowledge of an application — emitted by Okta, Entra, PingOne, and similar identity providers. Multiple Oleria AssignedApplication nodes may exist for the same deployment, one per IDP. Each connects to the same Oleria ApplicationDeployment via Oleria ApplicationReferencedBy. The deployment node is the merge point for conflicting signals across IDPs. enrichedSamlEntityId and enrichedOAuthClientId carry plain-text auth identity signals sourced from the IDP's SSO configuration.
An identifier for an AssignedApplication object in the Oleria system. Oleria converts these identifiers to global ids so they can be unique in the context of the global system graph. It is important for this identifier to be based on an underlying persistent and reusable application id so connections to the object are robust to metadata changes and other relevant operations.
"0oa1qcscnzkl4DTym1d8 (Okta)"
The name of the assigned application
"GitHub Enterprise Cloud"
The ObjectMetadata structure defines metadata that applies to every object and relationship, and is usually managed by the system that receives the data
Show child attributes
Show child attributes
Opaque platform-assigned identifier for this assigned application node.
object metadata supersets object metadata with platform enrichment provenance — the enrichment version and the time the record was generated
Show child attributes
Show child attributes
AuthenticationRequirements are used to specify authentication requirement configuration for Oleria integrated applications as described by their corresponding IntegratedApplication object
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Federation information used when specifying an EntityIdentifier
Show child attributes
Show child attributes
An identifier (unique to the integrated application) for a ObjectDirectory object represented in the Oleria system. Oleria converts these identifiers to global ids so they can be unique in the context of the global system graph. It is important for this identifier to be based on an underlying persistent and reusable application or identity provider id so connections to the object are robust to metadata changes and other relevant operations
"repo:R_kgDOLL0doQ (GitHub based on repository node identifier), 1BUxdX4M-H7X8GKRgTjprJS8fjY_Ij1giE82lQlny2kc (Google Drive based on file id)"
Plain-text OAuth client ID for this application instance. Informational — authenticationRequirements.authenticationKeys carries the authoritative hashed representation used for matching. Emitted alongside the hashed representation to support display and diagnostics.
"1234567890abcdef.apps.googleusercontent.com"
Plain-text SAML service provider entity ID for this application instance. Informational — authenticationRequirements.authenticationKeys carries the authoritative hashed representation used for matching. Emitted alongside the hashed representation to support display and diagnostics.
"https://github.com/enterprises/acme-corp"
Name of the vendor for the enterprise application or identity provider product
"Microsoft"
AuthenticationRequirements are used to specify authentication requirement configuration for Oleria integrated applications as described by their corresponding IntegratedApplication object
Show child attributes
Show child attributes
Global ID of the ObjectDirectory (IDP) that emitted this assignment.
Plain-text OAuth client ID from the IDP configuration. Key resolution signal (resolution priority 4). Promoted to Oleria ApplicationDeployment.enrichedOAuthClientId.
Global ID of the Oleria ApplicationDeployment this node resolved to. Denormalized cache of the Oleria ApplicationReferencedBy edge, which is authoritative. Omitted when unresolved — surfaces in admin UX for review.
Plain-text SAML entity ID from the IDP SSO configuration. Key resolution signal (resolution priority 3). Promoted to Oleria ApplicationDeployment.enrichedSamlEntityId from the most authoritative source.
Was this page helpful?

