Table of contents
Clash Detection
Download API definition:
GET https://api.bentley.com/clash-detection/itwins/{itwinId}/tests/{id}

Retrieves the details of the clash detection test for the given test id.

Authentication

Requires Authorization header with valid Bearer token for scope itwin-platform.

For more documentation on authorization and how to get access token visit OAUTH2 Authorization page.

Request parameters

Name
Required?
Description
id
Yes

Test id

itwinId
Yes

The iTwin Id

Request headers

Name
Required?
Description
Include-User-Metadata
No

Optional - Include user metadata when true.

Authorization
Yes

OAuth access token with itwin-platform scope

Accept
Yes

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

Response 200 OK

OK

json
{
    "test": {
        "id": "879005a2-ad06-4a4c-bf24-754925e211e6",
        "createdBy": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "name": "ClashDetectionTest1",
        "description": "Clash Detection Test",
        "creationDate": "2021-06-17T14:45:47.66Z",
        "modificationDate": "2021-06-24T14:49:59.66Z",
        "lastModifiedBy": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "setA": {
            "modelIds": [
                "0x21",
                "0x66",
                "0x68",
                "0x6a",
                "0x6c"
            ],
            "categoryIds": [],
            "selfCheck": true,
            "clearance": 0.111
        },
        "setB": {
            "modelIds": [],
            "categoryIds": [],
            "selfCheck": false,
            "clearance": 0
        },
        "suppressTouching": true,
        "touchingTolerance": 0,
        "includeSubModels": true,
        "suppressionRules": [],
        "advancedSettings": {
            "longClash": true,
            "calculateOverlap": false,
            "toleranceOverlapValidation": false
        },
        "tag": {
            "id": "9df26923-1dc6-4f17-bbcc-52eb43e7f029",
            "type": "iModels"
        },
        "userMetadata": {
            "createdBy": {
                "email": "Test.User@bentley.com",
                "name": "Test User"
            },
            "modifiedBy": {
                "email": "Test.User@bentley.com",
                "name": "Test User"
            }
        }
    }
}

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 404 Not Found

This response indicates that the specified test was not found.

json
{
    "error": {
        "code": "ClashDetectionTestNotFound",
        "message": "Requested test is not available."
    }
}

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.

Clash Detection Test Set

Criteria set for clash test.

Name
Type
Description
modelIds
String[]

The ids of the models for the clash test.

categoryIds
String[]

The ids of the categories for the clash test.

selfCheck
Boolean

Flag to perform self-check on the test set.

clearance
Number

The clearance between elements.

Clash Detection Test

Details of clash detection test.

Name
Type
Description

Clash Detection Test

Name
Type
Description
id
String

The id of the test.

name
String

The display name of the test.

createdBy
String

Unique id of the user who created the test.

description
String

The description of the test.

creationDate
Date-time

The date/time when the test was created.

lastModifiedBy
String

Id of user that last modified the test.

modificationDate
Date-time

The date/time when the test was last modified.

suppressTouching
Boolean

Flag to suppress touching.

includeSubModels
Boolean

Flag to include sub-models.

touchingTolerance
Number

The touching tolerance to be applied.

setA

Elements to include in clash test.

setB

Elements to include in clash test.

suppressionRules
String[]

The ids of the suppression rules.

advancedSettings

Advanced settings for clash test.

tag

Associated tag details for clash test.

userMetadata

User Metadata - available if Include-User-Metadata flag is set to true.

Property Value Rule User Link

Name
Type
Description
createdBy

The link to get the user details.

modifiedBy

The link to get the user details.

User Details

User Details.

Name
Type
Description
name
String

Name of user.

email
String

Email of user.

Clash Detection Test iModel details

Name
Type
Description
id
String

Assign a guid to the tag eg. iModel-id.

type
String

Assign a name to the tag type eg. iModels.

Clash Detection Test Advanced Settings

Name
Type
Description
longClash
Boolean

Flag to enable long clash job processing (no processing time limit enforced - just result limit).

calculateOverlap
Boolean

Flag to calculate and report clash overlaps (minimum orthogonal overlap distance).

toleranceOverlapValidation
Boolean

Flag to enable tolerance overlap validation. If 'suppressTouching' and 'calculateOverlap' are set, clashes are suppressed for overlaps less than touching tolerance.

Error

Contains error information.

Name
Type
Description
code
String

One of a server-defined set of error codes.

message
String

A human-readable representation of the error.

target
String, null

The target of the error.

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.

Was this page helpful?