Akamai · Example Payload

Akamai Get Cors Settings Example

CDNCloudEdge ComputingNetworksPlatformSecurity

Akamai Get Cors Settings Example is an example object payload from Akamai, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "get-cors-settings",
  "method": "GET",
  "path": "/endpoints/{apiEndPointId}/versions/{versionNumber}/settings/cors",
  "summary": "Get CORS settings",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "allowCredentials": false,
        "enabled": true,
        "preflightMaxAge": 86400,
        "allowedHeaders": [
          "Akamai-Cors-Allowed"
        ],
        "allowedMethods": [
          "GET"
        ],
        "allowedOrigins": [
          "*"
        ],
        "exposedHeaders": [
          "Akamai-Cors-Exposed"
        ]
      }
    }
  ]
}