---
title: "ScheduleJobParameters"
url: "https://developer.tesma.com/apis/logistics-api-26/versions/484d1e1b-3201-4f8b-800b-867280d5b6a4/schemas/ScheduleJobParameters"
---

> Full API specification: https://developer.tesma.com/apis/logistics-api-26/versions/484d1e1b-3201-4f8b-800b-867280d5b6a4.md

# ScheduleJobParameters

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: " API v1"
  version: 26.13.0.0
components:
  schemas:
    SimpleTriggerConfiguration:
      properties:
        endTime:
          format: date-time
          type:
            - "null"
            - string
        repeatCount:
          format: int32
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - integer
            - string
        repeatInterval:
          pattern: ^-?(\d+\.)?\d{2}:\d{2}:\d{2}(\.\d{1,7})?$
          type: string
        startTime:
          format: date-time
          type: string
      type: object
    JobNotificationSettings:
      properties:
        receiverEmailAddresses:
          items:
            type: string
          type:
            - "null"
            - array
        receiverUserIds:
          items:
            format: int32
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
          type:
            - "null"
            - array
        sendOnError:
          type: boolean
        sendOnSuccess:
          type: boolean
      type: object
    ScheduleJobParameters:
      properties:
        configuration:
          $ref: "#/components/schemas/SimpleTriggerConfiguration"
        jobKey:
          type:
            - "null"
            - string
        notificationSettings:
          $ref: "#/components/schemas/JobNotificationSettings"
        parameterObject:
          type:
            - "null"
            - object
        progressId:
          type:
            - "null"
            - string
      type: object
```
