Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface AppUpload

Hierarchy

Index

Properties

Methods

Properties

sys

sys: AppUploadSys & { expiresAt: string; organization: SysLink }

Methods

delete

  • delete(): Promise<void>
  • Deletes this object on the server.

    example
    const contentful = require('contentful-management')
    
    const client = contentful.createClient({
      accessToken: '<content_management_api_key>'
    })
    
    client.getOrganization('<org_id>')
    .then((org) => org.getAppUpload('<app_upload_id>'))
    .then((appUpload) => appUpload.delete())
    .then(() => console.log(`App Upload deleted.`))
    .catch(console.error)
    

    Returns Promise<void>

    Promise for the deletion. It contains no data, but the Promise error case should be handled.

toPlainObject