Get a custom asset
client.customPages.assets.get(stringassetName, AssetGetParams { account_id, zone_id } params?, RequestOptionsoptions?): AssetGetResponse { description, last_updated, name, 2 more }
GET/{accounts_or_zones}/{account_or_zone_id}/custom_pages/assets/{asset_name}
Fetches the details of a custom asset.
Security
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Parameters
Get a custom asset
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiEmail: process.env['CLOUDFLARE_EMAIL'], // This is the default and can be omitted
apiKey: process.env['CLOUDFLARE_API_KEY'], // This is the default and can be omitted
});
const asset = await client.customPages.assets.get('my_custom_error_page', {
account_id: 'account_id',
});
console.log(asset.description);{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"description": "Custom 500 error page",
"last_updated": "2014-01-01T05:20:00.12345Z",
"name": "my_custom_error_page",
"size_bytes": 1024,
"url": "https://example.com/error.html"
}
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"description": "Custom 500 error page",
"last_updated": "2014-01-01T05:20:00.12345Z",
"name": "my_custom_error_page",
"size_bytes": 1024,
"url": "https://example.com/error.html"
}
}