cloudflare
Version:
The official TypeScript library for the Cloudflare API
16 lines • 615 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../resource.mjs";
export class Content extends APIResource {
/**
* Fetches the content of a snippet belonging to the zone.
*/
get(snippetName, params, options) {
const { zone_id } = params;
return this._client.get(`/zones/${zone_id}/snippets/${snippetName}/content`, {
...options,
headers: { Accept: 'multipart/form-data', ...options?.headers },
__binaryResponse: true,
});
}
}
//# sourceMappingURL=content.mjs.map