Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

Schemas

Mark Greenway edited this page Apr 29, 2023 · 4 revisions

CallbackCreate_Dto

Used at POST /callbacks

CallbackCreate_Dto:
    required:
    - url
    type: object
    properties:
    url:
        minLength: 1
        type: string
        description: The URL to call when time expires
        example: http://10.10.1.7:8123/api/webhook/webhooktester
    secondsFromNow:
        type: integer
        description: How many seconds into the future should the service call the URL
        format: int32
        nullable: true
        example: 55
    timeof:
        type: string
        description: When to call the URL.
        nullable: true
        example: 2023-05-2T17:14:05.0743026+00:00
        deprecated: true
    method:
        type: string
        description: Http Method to call the URL
        nullable: true
        example: POST
    json:
        type: string
        description: Json Data to post to URL (Base 64 Encoded)
        nullable: true
        example: eyJzZXJ2aWNlIjoibGlnaHQudG9nZ2xlIiwiZW50aXR5X2lkIjoibGlnaHQuZWRpc29uIn0=
    form:
        type: string
        description: Form Data to post to URL (Base 64 Encoded) overriden by json
        nullable: true
        example: ''

    cleanupOthers:
        type: bool
        description: Should this remove all not completed with the same Json and Form Data? a.k.a. cleanup Others
        nullable: true
        example: false

Clone this wiki locally