• jobs
    • tenanted
    • util
    Platform
    Cronman / Reference / REST APIs

    jobs

    OpenAPI
    GET

    Get jobs modified since a specific timestampExperimental

    Forge and OAuth2 apps cannot access this REST resource.

    Request

    Query parameters

    maxResults

    integer

    sinceTime

    integer

    nextToken

    string

    Responses

    OK

    application/json

    ApiIterable
    GET/jobs
    1 2 3 curl --request GET \ --url 'https://cronman-service.prod.atl-paas.net/jobs' \ --header 'Accept: application/json'
    200Response
    1 2 3 4 5 6 { "objects": [ {} ], "nextToken": "<string>" }
    GET

    Get ScheduledJobs that were triggered on or after a specific timestamp. Timestamp cannot be older than 3 days.Experimental

    Forge and OAuth2 apps cannot access this REST resource.

    Request

    Query parameters

    maxResults

    integer

    sinceTime

    integer

    nextToken

    string

    Responses

    OK

    application/json

    ApiIterable
    GET/jobs/runs
    1 2 3 curl --request GET \ --url 'https://cronman-service.prod.atl-paas.net/jobs/runs' \ --header 'Accept: application/json'
    200Response
    1 2 3 4 5 6 { "objects": [ {} ], "nextToken": "<string>" }
    GET

    Get jobs by jobIDExperimental

    Forge and OAuth2 apps cannot access this REST resource.

    Request

    Path parameters

    jobId

    string

    Required

    Responses

    OK

    application/json

    Job
    GET/jobs/{jobId}
    1 2 3 curl --request GET \ --url 'https://cronman-service.prod.atl-paas.net/jobs/{jobId}' \ --header 'Accept: application/json'
    200Response
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 { "name": "<string>", "id": "<string>", "type": "single", "enabled": true, "status": "created", "timezone": "<string>", "startTime": "<string>", "expression": "<string>", "externalId": "<string>", "tenantId": "<string>", "bucketId": "<string>", "payload": "<string>", "notificationUrl": "<string>", "notificationMethod": "sqs", "createdTime": "<string>", "modifiedTime": "<string>" }

    Rate this page: