Method: cases.attachments.get

Retrieve an attachment associated with a support case.

EXAMPLES:

cURL:

attachment="projects/some-project/cases/23598314/attachments/0684M00000P3h1fQAB"
curl \
  --header "Authorization: Bearer $(gcloud auth print-access-token)" \
  "https://cloudsupport.googleapis.com/v2/$attachment"

Python:

import googleapiclient.discovery

apiVersion = "v2beta"
supportApiService = googleapiclient.discovery.build(
    serviceName="cloudsupport",
    version=apiVersion,
    discoveryServiceUrl=f"https://cloudsupport.googleapis.com/$discovery/rest?version={apiVersion}",
)
request = (
    supportApiService.cases()
    .attachments()
    .get(name="projects/some-project/cases/43595344/attachments/0684M00000P3h1fQAB")
)
print(request.execute())

HTTP request

GET https://cloudsupport.googleapis.com/v2beta/{name=*/*/cases/*/attachments/*}

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

Required. The name of the attachment to get.

Request body

The request body must be empty.

Response body

If successful, the response body contains an instance of Attachment.

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/cloudsupport
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-08-05 UTC.