Changed Elements
Download API definition:
This API is a Technical Preview and is available for testing purposes only. Do not use in production.
post https://qa-api.bentley.com/changedelements/diff

Queues a new diff job for the specified iModel changeset range and diffing strategy. Returns 409 if a job with identical parameters already exists. Delete the existing job first to retry.

Request headers

Name
Required?
Description
Authorization
Yes

OAuth access token with itwin-platform scope

Accept
Yes

Setting to application/vnd.bentley.itwin-platform.v3+json is recommended.

Request body

CreateDiffJobRequest

Name
Type
Required?
Description
iTwinId
String
Yes

GUID of the iTwin that owns the iModel.

iModelId
String
Yes

GUID of the iModel to diff.

diffingPlan
Yes
endChangesetIndex
Int32
Yes

Index of the ending changeset (inclusive). Must be greater than startChangesetIndex.

startChangesetIndex
Int32
Yes

Index of the starting changeset (inclusive).

Example

json
{
    "iTwinId": "string",
    "iModelId": "string",
    "startChangesetIndex": 0,
    "endChangesetIndex": 0,
    "diffingPlan": {
        "strategy": "string"
    }
}

Response 202 Accepted

Diff job created and queued.

json
{
    "job": {
        "jobId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "status": "Queued",
        "iTwinId": "a1b2c3d4-0000-0000-0000-000000000000",
        "iModelId": "b2c3d4e5-0000-0000-0000-000000000000",
        "startChangesetIndex": 0,
        "endChangesetIndex": 10,
        "diffingPlan": {
            "strategy": "Basic"
        }
    }
}

Response 400 Bad Request

Invalid request parameters or index range.

json
{
    "error": {
        "code": "InvalidChangedElementsRequest",
        "message": "One or more request parameters are invalid.",
        "details": [{
            "code": "InvalidParameter",
            "message": "'iTwinId' is not a valid GUID.",
            "target": "iTwinId"
        }]
    }
}

Response 401 Unauthorized

This response indicates that request lacks valid authentication credentials. Access token might not been provided, issued by the wrong issuer, does not have required scopes or request headers were malformed.

json
{
    "error": {
        "code": "HeaderNotFound",
        "message": "Header Authorization was not found in the request. Access denied."
    }
}

Response 403 Forbidden

Caller does not have read access to the iTwin or iModel.

json
{
    "error": {
        "code": "InsufficientPermissions",
        "message": "The user has insufficient permissions for the requested operation."
    }
}

Response 404 Not Found

iTwin, iModel, or one of the changeset indices was not found.

json
{
    "error": {
        "code": "DiffJobNotFound",
        "message": "Requested DiffJob is not available."
    }
}

Response 409 Conflict

A job with identical parameters already exists. Delete the existing job to retry.

json
{
    "error": {
        "code": "DiffJobExists",
        "message": "A diff job with identical parameters already exists. Delete the existing job to retry."
    }
}

Response 429 Too many requests

This response indicates that the client sent more requests than allowed by this API for the current tier of the client.

json
{
    "error": {
        "code": "RateLimitExceeded",
        "message": "The client sent more requests than allowed by this API for the current tier of the client."
    }
}

Response headers

Name
Description
retry-after

Number of seconds to wait until client is allowed to make more requests.

Error

Contains error information.

Name
Type
Description
code
String

One of a server-defined set of error codes.

target
String, null

The target of the error.

message
String

A human-readable representation of the error.

DiffJob

Name
Type
Description
href
String, null

Presigned Azure SAS URL to the results blob. Present only when status is Completed.

error
String, null

Error details. Present only when status is Failed.

jobId
String, null

Unique identifier for this diff job.

status
String, null

Current job status: Queued, Started, Completed, or Failed.

iTwinId
String, null
iModelId
String, null
diffingPlan
totalAgents
Int32, null

Total number of agent jobs for this diff.

completedAgents
Int32, null

Number of agent jobs that have finished processing.

endChangesetIndex
Int32
startChangesetIndex
Int32

DiffingPlan

Name
Type
Description
strategy
String

Diffing strategy to apply. Accepted values: "Basic", "VersionCompare", "Full" (case-insensitive).

Error Response

Gives details for an error that occurred while handling the request. Note that clients MUST NOT assume that every failed request will produce an object of this schema, or that all of the properties in the response will be non-null, as the error may have prevented this response from being constructed.

Name
Type
Description
error

Error information.

DiffJobResponse

Name
Type
Description

CreateDiffJobRequest

Name
Type
Description
iTwinId
String

GUID of the iTwin that owns the iModel.

iModelId
String

GUID of the iModel to diff.

diffingPlan
endChangesetIndex
Int32

Index of the ending changeset (inclusive). Must be greater than startChangesetIndex.

startChangesetIndex
Int32

Index of the starting changeset (inclusive).

Was this page helpful?