Reality Management
Download API definition:
PATCH https://dev-api.bentley.com/reality-management/reality-data/{id}/move

Move a reality data to a specified iTwin. A request body with the iTwinId parameter is required.

To successfully move a reality data :

  • The destination iTwin must be in the same organization as the reality data.
  • The destination iTwin must be in the same data center location as the reality data.
  • The user must have valid permissions on reality data's iTwin and destination iTwin.
  • The reality data must not already be associated to more than one iTwin.

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.

Authorization

User must be an Organization Administrator for the Organization that owns both iTwins or have realitydata_manage permission assigned for both iTwins.

An Organization Administrator must have at least one of the following roles assigned in User Management: Account Administrator, Co-Administrator, or CONNECT Services Administrator. For more information about User Management please visit our Bentley Communities Licensing, Cloud, and Web Services wiki page.

Rate limits

All iTwin Platform API operations have a rate limit. For more documentation on that visit Rate limits and quotas page.

Request parameters

Name
Required?
Description
id
Yes

Identifier of the reality data. This identifier is assigned by the service at the creation of the reality data. It is also unique.

Request headers

Name
Required?
Description
Authorization
Yes

OAuth access token with itwin-platform scope

Accept
Yes

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

Request body

request-body-move

Name
Type
Required?
Description
iTwinId
String
Yes

Identifier of the destination iTwin to move the reality data to.

Example

json
{
    "iTwinId": "string"
}

Response 204 No Content

This response indicates that the reality data was successfully moved to the desired iTwin.

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

The user has insufficient permissions for the requested operation.

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

Response 404 Not Found

This response indicates that the reality data id or the iTwin id was not found.

json
{
    "error": {
        "code": "RealityDataNotFound",
        "message": "Requested reality data is not available."
    }
}

Response 409 Conflict

This response indicates that the reality data is already within the given iTwin.

json
{
    "error": {
        "code": "AlreadyExists",
        "message": "Reality data is already within the given iTwin."
    }
}

Response 422 Unprocessable Entity

Invalid request to move reality data to iTwin. Please ensure that the request is valid.

json
{
    "error": {
        "code": "InvalidRealityDataRequest",
        "message": "Invalid RealityData request.",
        "details": [{
            "code": "InvalidValue",
            "message": "The value '028cb17d-01e5-4d92-bfee-89b201a92' is not valid.",
            "target": "iTwinId"
        }]
    }
}

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.

request-body-move

Name
Type
Description
iTwinId
String

Identifier of the destination iTwin to move the reality data to.

DetailedError

Contains error information and an array of more specific errors.

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.

details

Optional array of more specific errors.

Detailed 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 Detailed information.

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?