ROCKITPLAY API
    ROCKITPLAY API
    • ROCKIT Edge - Admin API
      • Installation / Upgrade
        • get versions
        • ping
        • submit test task
      • Admin Edge Organizations
        • Create Organization
        • Delete Organization
    • ROCKIT Edge - Backend API
      • Backend Edge Organizations
        • Create Organization
        • Delete Organization
      • Authentication
        • user login (user+pw+org)
        • Authentication
      • Account Management
        • get user details
        • list users
        • Modify user
        • delete users
        • Create User / Create Machine User
        • Create User / Create Machine User Copy
      • Deployments
        • Creating Deployments
        • Get Deployments
        • Get Deployment Details
        • Modify Deployment
        • Deleting Deployments
      • Apps
        • Creating Apps
        • Import native builds
        • App Details
        • List Apps
        • Patch App
        • Delete Apps
      • Triggers
        • Process Traces
        • Retry Task
      • Tasks
        • Listing Tasks
        • Task Details
        • Acknowledge Warning / Expire Task
      • Subscriptions
        • Subscribe
        • List Subscriptions
        • Unsubscribe
      • Roles
        • List Roles
        • Create Role
        • Patch Role
        • Role Details
        • Delete Roles
      • API Keys
        • Create API Key
        • Delete API Key
      • Commit
        • Commit
    • Changelog
      • Changelog
    • Schemas
      • Webhook Request Body
      • Import UrlSchema

    Webhook Request Body

    The ROCKIT Edge calls the registered webhooks with the following request body:

    {
        "type": "dltar",
        "event": "submit",
        "orgName": "string",
        "appName": "string",
        "buildName": "string",
        "dxfName": "string",
        "buildChanged": true,
        "exception": {
            "httpDownloadFailed": {
                "url": "string",
                "httpStatus": 100,
                "exitCode": 0,
                "sizeBytes": 0
            },
            "fileReadFailed": {
                "filename": "string",
                "typeExpected": "string",
                "typeDetected": "string"
            }
        },
        "error": {
            "deployment": {
                "failedDeployments": [
                    "string"
                ],
                "succeededDeployments": [
                    "string"
                ]
            }
        }
    }
    Built with