# Track developer action

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /matches_track:
    post:
      summary: Track developer action
      deprecated: false
      description: Track when a developer views or applies to an opportunity
      tags:
        - Analytics
        - Analytics
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrackRequest'
      responses:
        '200':
          description: Action tracked
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: Analytics
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1150986/apis/api-25474688-run
components:
  schemas:
    TrackRequest:
      type: object
      required:
        - developer_id
        - opportunity_id
        - action
      properties:
        developer_id:
          type: string
          format: uuid
        opportunity_id:
          type: string
          format: uuid
        action:
          type: string
          enum:
            - viewed
            - applied
      x-apidog-orders:
        - developer_id
        - opportunity_id
        - action
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
