Account Management API
URL endpoints
Create URL‑endpoint
Note: This API is currently in beta.
Creates a new URL‑endpoint and returns the resulting object.
post/v1/accounts/url-endpoints
Request body
Example request
{
"description": "My custom URL endpoint",
"urlPrefix": "product-images",
"origins": [
"origin-id-1"
]
}Response
URL‑endpoint created successfully.
Example response
{
"description": "My custom URL endpoint",
"urlPrefix": "product-images",
"origins": [
"origin-id-1",
"origin-id-2"
],
"urlRewriter": {
"preserveAssetDeliveryTypes": true
}
}