Table of contents
iModels
Download API definition:
POST https://api.bentley.com/imodels/{id}/namedversions

Create a Named Version.

Every Changeset on the timeline creates a new version of the iModel. However, some points on the timeline can represent important milestones or significant events to be saved. iModelHub provides a way to mark a point on the timeline with a name. These time points are referred to as Named Versions.

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 have imodels_write permission assigned at the iModel level and at least imodels_webview permission assigned at the iTwin level. If permissions at the iModel level are not configured, then user must have imodels_write permission assigned at the iTwin level.

Alternatively the user should be an Organization Administrator for the Organization that owns a given iTwin the iModel belongs to.

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
In
Required?
Description
id
template
Yes

iModel id

Request headers

Name
Required?
Description
Authorization
Yes

OAuth access token with itwin-platform scope

Accept
Yes

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

Content-Type
No

Indicates request body content type. Supported media type is application/json.

Request body

Named Version (create)

Name
Type
Required?
Description
name
String
Yes

Named Version name.

description
String,null
No

Description of the Named Version.

changesetId
String,null
No

Id of the Changeset that the Named Version will be created for. If not provided a baseline iModel Named Version will be created.

Example

json
{
    "name": "Wind farm design",
    "description": "Finalized wind farm design in Sun City",
    "changesetId": "1f2e04b666edce395e37a795e2231e995cbf8349"
}

Response 201 Created

Created

json
{
    "namedVersion": {
        "id": "3020441b-e179-4334-a59a-4fb8deb93df1",
        "displayName": "Wind farm design",
        "changesetId": "1f2e04b666edce395e37a795e2231e995cbf8349",
        "changesetIndex": 14,
        "name": "Wind farm design",
        "description": "Finalized wind farm design in Sun City",
        "createdDateTime": "2020-10-21T06:42:57.6700000Z",
        "state": "visible",
        "application": null,
        "_links": {
            "creator": {
                "href": "https://api.bentley.com/imodels/5e19bee0-3aea-4355-a9f0-c6df9989ee7d/users/ea4dfb9f-7f66-4c6f-82c5-0efad1636a1f"
            },
            "changeset": {
                "href": "https://api.bentley.com/imodels/5e19bee0-3aea-4355-a9f0-c6df9989ee7d/changesets/1f2e04b666edce395e37a795e2231e995cbf8349"
            }
        }
    }
}

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

User is not authorized to create a Named Version.

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

Response 404 Not Found

Specified iModel was not found.

json
{
    "error": {
        "code": "iModelNotFound",
        "message": "Requested iModel is not available."
    }
}

Response 409 Conflict

Named Version with the same name or Changeset already exists or iModel is not initialized.

json
{
    "error": {
        "code": "NamedVersionExists",
        "message": "Named Version with the same name already exists within the iModel."
    }
}

Response 422 Unprocessable Entity

The 422 (Unprocessable Entity) status code indicates that the request cannot be processed by the server due to a client error (e.g. malformed request syntax)

json
{
    "error": {
        "code": "InvalidiModelsRequest",
        "message": "Cannot create Named Version.",
        "details": [{
                "code": "InvalidValue",
                "message": "Provided 'name' is not valid. The value exceeds allowed 255 characters.",
                "target": "name"
            },
            {
                "code": "InvalidHeaderValue",
                "message": "'application/xml' is not supported 'content-type'. Supported media type is 'application/json'.",
                "target": "content-type"
            },
            {
                "code": "MissingRequiredProperty",
                "message": "Required property is missing.",
                "target": "name"
            },
            {
                "code": "InvalidRequestBody",
                "message": "Failed to parse request body. Make sure it is a valid JSON."
            }
        ]
    }
}

Response 429 Too many requests

This response indicates that the user has sent too many requests in a given amount of time.

json
{
    "error": {
        "code": "TooManyRequests",
        "message": "More requests were received than the subscription rate-limit allows."
    }
}

Response headers

Name
Description
retry-after

The number of requests exceeds the rate-limit for the client subscription.

Named Version Response

Container for Named Version object.

TableSchema
Name
Type
Description
namedVersion

Named Version properties.

Named Version (create)

Properties of the Named Version to be created.

TableSchema
Name
Type
Description
name
String

Named Version name.

description
String,null

Description of the Named Version.

changesetId
String,null

Id of the Changeset that the Named Version will be created for. If not provided a baseline iModel Named Version will be created.

Named Version

Full representation of the Named Version.

TableSchema
Name
Type
Description
id
String

Id of the Named Version.

displayName
String

Display name of the Named Version. Corresponds to Name property.

changesetId
String,null

Id of the Changeset that the Named Version is created for.

changesetIndex
Int64

Index of the Changeset that the Named Version is created for.

name
String

Named Version name.

description
String,null

Description of the Named Version.

createdDateTime
String

Date when the Named Version was created.

state
String

Indicates the state of the named version. 'hidden' - indicates that Named Version should be hidden in the user interface. 'visible' - indicates that Named Version should be visible in the user interface.

application

Information about the application that acquired the Briefcase.

_links

Contains the hyperlinks to the related data of the Named Version.

Named Version Links

Hyperlinks to Named Version related data.

TableSchema
Name
Type
Description
creator

Information about the creator of the Named Version.

changeset

Changeset for which the Named Version was created. If this is null then Named Version was created for a baseline iModel.

Link

Hyperlink container.

TableSchema
Name
Type
Description
href
String

Hyperlink to the specific entity.

Application

Information about the client application that is related to an entity.

TableSchema
Name
Type
Description
id
String

Id of the application.

name
String

Application name.

Error

Contains error information.

TableSchema
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

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.

TableSchema
Name
Type
Description
error

Error information.