After signing in, you can create credentials that can be used to call the Platform APIs.
Download OpenAPI specification:Download
Use the Adobe Experience Platform Data Distiller Authorization API to manage IP-based access restrictions for Query Service by controlling which IP addresses are allowed. With this tool, you can configure, enforce, and monitor IP-based restrictions to meet stringent security standards within Adobe Experience Platform.
NOTE: This functionality is only available to customers who have purchased the Data Distiller add on. For more information, contact your Adobe representative.
Related Documentation:
API paths:
Required headers:
Authorization
, x-gw-ims-org-id
, and x-api-key
. For more information on obtaining these values, see the authentication tutorial.x-sandbox-name
specifying the lowercase sandbox name where the operation will take place (for example, "prod"). For more details, see the sandboxes overview.Content-Type
set to application/json
.API error handling:
You can now interact with the Experience Platform API endpoints directly from this API reference page. Get your authentication credentials and use the Try it functionality in the right rail. Note that by using this functionality, you are making real API calls. Keep this in mind when you interact with production sandboxes.
Use the IP Access endpoints to manage allowed IP ranges, enabling secure data access for Query Service in Adobe Experience Platform.
Success
Unauthorized
Not Found
Internal Server Error
{- "imsOrg": "18D63B2559DF0C130A49422D@AdobeOrg",
- "sandboxName": "prod",
- "channel": "data_distiller",
- "allowedIpRanges": [
- {
- "ipRange": "136.23.110.0/23",
- "description": "VPN-1 gateway IPs"
}
]
}
Array of objects The list of IP ranges to allow for data access in the sandbox. |
Success
Bad Request
Unauthorized
Not Found
Internal Server Error
{- "ipRanges": [
- {
- "ipRange": "136.23.110.0/23",
- "description": "VPN-1 gateway IPs"
}
]
}
{- "imsOrg": "18D63B2559DF0C130A49422D@AdobeOrg",
- "sandboxName": "prod",
- "channel": "data_distiller",
- "allowedIpRanges": [
- {
- "ipRange": "136.23.110.0/23",
- "description": "VPN-1 gateway IPs"
}
]
}
Success
Unauthorized
Not Found
Internal Server Error
{- "imsOrg": "18D63B2559DF0C130A49422D@AdobeOrg",
- "sandboxName": "prod",
- "channel": "data_distiller",
- "deletedIpRanges": [
- {
- "ipRange": "136.23.110.0/23",
- "description": "VPN-1 gateway IPs"
}
]
}
Use the IP Validation endpoint to verify if a specified IP address is permitted to access data within a designated sandbox in Query Service.
Success
Unauthorized
Not Found
Internal Server Error
{- "ipAddress": "197.2.0.2"
}
{- "isAllowed": true
}