You can retrieve a list of supported sandbox types for your organization by making a GET request to the /sandboxTypes
endpoint.
The API endpoint used in this guide is part of the Sandbox API. Before continuing, please review the getting started guide for links to related documentation, a guide to reading the sample API calls in this document, and important information regarding required headers that are needed to successfully make calls to any Experience Platform API.
You can retrieve a list of supported sandbox types for your organization by making a GET request to the /sandboxTypes
endpoint.
API format
GET /sandboxTypes
Request
curl -X GET \
https://platform.adobe.io/data/foundation/sandbox-management/sandboxTypes \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
Response
A successful response returns a list of sandbox types that are supported for your organization.
{
"sandboxTypes": [
"production",
"development"
]
}