Skip to main content
Version: main

Get export content

Download a completed export's content.

HTTP request

GET /api/sn_cdm/applications/deployables/exports/{export_id}/content

Path parameters

NameDescription
export_idExport id

Query parameters

None.

Request body

Don't supply a request body for this method.

Response

[]byte — the raw export content.

Example

response, err := client.Cdm().Applications().Deployables().Exports().ByID("{exportID}").Content().Get(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?