> ## 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.

# Get Properties for Timeline Event Type

> Retrieve existing properties defined for a timeline event type. You can include these properties when sending event data to that event type, then use them in the event template for timeline display as well as list segmentation.

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 GET /integrations/v1/{application-id}/timeline/event-types/{event-type-id}/properties
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}/properties:
    get:
      summary: Get Properties for Timeline Event Type
      description: >-
        Retrieve existing properties defined for a timeline event type. You can
        include these properties when sending event data to that event type,
        then use them in the event template for timeline display as well as list
        segmentation.
      operationId: getintegrationsv1applicationidtimelineeventtypeseventtypeidproperties
      responses:
        '200':
          description: >-
            Successful response - Create a new property for a specified timeline
            event type
          content:
            application/json:
              schema:
                type: object
              examples:
                example1:
                  summary: Get Properties for Timeline Event Type - Example 1
                  value:
                    - options: null
                      propertyType: Numeric
                      name: NumericProperty
                      id: 1
                      label: Numeric Property
                      eventTypeId: 260
                    - options: null
                      propertyType: String
                      name: StringProperty
                      id: 2
                      label: String Property
                      eventTypeId: 260
                    - options: []
                      propertyType: Enumeration
                      name: NoOptionsProperty
                      id: 3
                      label: No Options Property
                      eventTypeId: 260
                    - options:
                        - propertyId: 4
                          label: Some Label
                          value: OptionValue
                      propertyType: Enumeration
                      name: EnumerationProperty
                      id: 4
                      label: Enumeration Property
                      eventTypeId: 260

````