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

# Create a Scheduled Job



## OpenAPI

````yaml POST /automation/scheduler/jobs
openapi: 3.0.0
info:
  title: Brewit API
  contact: {}
  version: '1.0'
servers:
  - url: https://api.brewit.money
    variables: {}
security: []
tags:
  - name: Misc
    description: ''
paths:
  /automation/scheduler/jobs:
    post:
      tags:
        - Misc
      summary: Create a Monad Agent task Copy
      operationId: CreateaMonadAgenttaskCopy
      parameters: []
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/CreateaMonadAgenttaskCopyRequest'
                - example:
                    name: 'Scheduler Job '
                    repeat: 5000
                    times: 1
                    task: external
                    payload:
                      callbackUrl: >-
                        https://webhook.site/bf9b412a-782d-4fda-90ad-4e3a8ee32659
                      data:
                        name: koshik
                    enabled: true
            example:
              name: 'Scheduler Job '
              repeat: 5000
              times: 1
              task: external
              payload:
                callbackUrl: https://webhook.site/bf9b412a-782d-4fda-90ad-4e3a8ee32659
                data:
                  name: koshik
              enabled: true
        required: true
      responses:
        '200':
          description: ''
          headers: {}
      deprecated: false
components:
  schemas:
    CreateaMonadAgenttaskCopyRequest:
      title: CreateaMonadAgenttaskCopyRequest
      required:
        - name
        - repeat
        - times
        - task
        - payload
        - enabled
      type: object
      properties:
        name:
          type: string
        repeat:
          type: integer
          format: int32
        times:
          type: integer
          format: int32
        task:
          type: string
        payload:
          allOf:
            - $ref: '#/components/schemas/Payload2'
            - {}
        enabled:
          type: boolean
      example:
        name: 'Scheduler Job '
        repeat: 5000
        times: 1
        task: external
        payload:
          callbackUrl: https://webhook.site/bf9b412a-782d-4fda-90ad-4e3a8ee32659
          data:
            name: koshik
        enabled: true
    Payload2:
      title: Payload2
      required:
        - callbackUrl
        - data
      type: object
      properties:
        callbackUrl:
          type: string
        data:
          allOf:
            - $ref: '#/components/schemas/Data'
            - {}
      example:
        callbackUrl: https://webhook.site/bf9b412a-782d-4fda-90ad-4e3a8ee32659
        data:
          name: koshik
    Data:
      title: Data
      required:
        - name
      type: object
      properties:
        name:
          type: string
      example:
        name: koshik

````