Fastly · Example Payload

Fastly Object Storage Put Object Example

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Fastly Object Storage Put Object Example is an example object payload from Fastly, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "PUT",
    "url": "https://storage.fastly.com/my-bucket/uploads/2026/05/report.pdf",
    "headers": {
      "Authorization": "AWS4-HMAC-SHA256 Credential=...",
      "Content-Type": "application/pdf",
      "Content-Length": "184320",
      "x-amz-meta-uploaded-by": "kinlane@example.com"
    },
    "body": "<binary PDF payload>"
  },
  "response": {
    "status": 200,
    "headers": {
      "ETag": "\"e1d3a8b9...\"",
      "x-amz-request-id": "FA5719C2",
      "Server": "FastlyObjectStorage"
    },
    "body": ""
  }
}