> ## Documentation Index
> Fetch the complete documentation index at: https://br.developers.hubspot.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a timeline Event Type

> Create a new event type. The event type should represent an action that can take place in your platform, and act as the template for individual events. You must create an event type before you can create individual events. By default, event types are created for contacts, but it's possible to create event types for companies or deals using the objectType field. Note: Event properties cannot be named log or lookup. These tokens are reserved as helpers by the library used to render events in-app, Handlebars.js. For more information, check out the Handlebars.js docs here.

export const ScopesList = ({scopes = [], description = "Esta API requer um dos seguintes escopos:"}) => {
  if (!scopes || scopes.length === 0) {
    return null;
  }
  const sortedScopes = scopes.sort((a, b) => a.localeCompare(b));
  return <div>
      <div className="text-sm mb-2">{description}</div>
      <div>
        {sortedScopes.map((scope, index) => <div key={index}>
            <code>
              <span className="text-xs">{scope}</span>
            </code>
          </div>)}
      </div>
    </div>;
};

<Accordion title="Scope requirements">
  <ScopesList scopes={['timeline']} />
</Accordion>


## OpenAPI

````yaml specs/legacy/v1/crm-timeline-v1.json DELETE /integrations/v1/{application-id}/timeline/event-types/{event-type-id}
openapi: 3.0.0
info:
  title: CRM Timeline Events API v1
  version: 1.0.0
  description: Legacy CRM Timeline Events API v1 - Auto-generated from MDX documentation
servers:
  - url: https://api.hubapi.com
    description: HubSpot API Server
security: []
paths:
  /integrations/v1/{application-id}/timeline/event-types/{event-type-id}:
    delete:
      summary: Delete a timeline Event Type
      description: >-
        Create a new event type. The event type should represent an action that
        can take place in your platform, and act as the template for individual
        events. You must create an event type before you can create individual
        events. By default, event types are created for contacts, but it's
        possible to create event types for companies or deals using the
        objectType field. Note: Event properties cannot be named log or lookup.
        These tokens are reserved as helpers by the library used to render
        events in-app, Handlebars.js. For more information, check out the
        Handlebars.js docs here.
      operationId: deleteintegrationsv1applicationidtimelineeventtypeseventtypeid
      responses:
        '200':
          description: Successful response - Create a new event type
          content:
            application/json:
              schema:
                type: object
              examples:
                example1:
                  summary: Delete a timeline Event Type - Example 1
                  value: Returns a 204 No Content response on success.

````