openapi: 3.0.0
info:
title: Construction.Account.Admin Account Management Items API
version: '1.0'
contact:
name: Autodesk Plaform Services
url: https://aps.autodesk.com/
email: aps.help@autodesk.com
termsOfService: https://www.autodesk.com/company/legal-notices-trademarks/terms-of-service-autodesk360-web-services/forge-platform-web-services-api-terms-of-service
x-support: https://stackoverflow.com/questions/tagged/autodesk-platform-services
description: 'The Account Admin API automates creating and managing projects, assigning and managing project users, and managing member and partner company directories. You can also synchronize data with external systems.
'
servers:
- url: https://developer.api.autodesk.com
security:
- 2-legged: []
- 3-legged: []
tags:
- name: Items
paths:
/data/v1/projects/{project_id}/items/{item_id}:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItem
summary: Get an Item
description: 'Retrieves an item. Items represent Word documents, Fusion 360 design files, drawings, spreadsheets, etc.
The tip version for the item is included in the included array of the payload.
To retrieve multiple items, see the ListItems command.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
- $ref: '#/components/parameters/includePathInProject'
responses:
'200':
description: The specified item was retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/Item'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
patch:
tags:
- Items
operationId: patchItem
summary: Update an Item
description: 'Updates the ``displayName`` of the specified item. Note that updating the ``displayName`` of an item is not supported for BIM 360 Docs or ACC items.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
parameters:
- $ref: '#/components/parameters/x-user-id'
responses:
'200':
description: Updated the item’s properties successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/Item'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
'423':
$ref: '#/components/responses/423-general'
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/ModifyItemPayload'
description: Describe the item to be patched.
security:
- 2-legged:
- data:write
- 3-legged:
- data:write
/data/v1/projects/{project_id}/items/{item_id}/parent:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItemParentFolder
summary: Get Parent of an Item
description: 'Returns the parent folder of the specified item.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
responses:
'200':
description: The parent folder was retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/Folder'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/items/{item_id}/relationships/refs:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItemRelationshipsRefs
summary: List Custom Relationships for an Item
description: 'Returns the custom relationships that are associated with the specified item. Custom relationships can be established between an item and other resources within the ``data`` domain service (folders, items, and versions).
Each relationship is defined by the ID of the object at the other end of the relationship, together with type, specific reference meta including extension data.
Callers will typically use a filter parameter to restrict the response to the custom relationship types (``filter[meta.refType]``) they are interested in.
The response body will have an included array that contains the resources in the relationship, which is essentially what is returned by the [List Related Resources for an Item](/en/docs/data/v2/reference/http/projects-project_id-items-item_id-refs-GET/) operation.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
- $ref: '#/components/parameters/filter_type_version'
- $ref: '#/components/parameters/filter_id'
- $ref: '#/components/parameters/filter_refType'
- $ref: '#/components/parameters/filter_direction'
- $ref: '#/components/parameters/filter_extension_type'
responses:
'200':
description: The list of custom relationships was successfully retrieved.
content:
application/json:
schema:
$ref: '#/components/schemas/RelationshipRefs'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
post:
tags:
- Items
operationId: createItemRelationshipsRef
summary: Create a Custom Relationship for an Item
description: Creates a custom relationship between an item and another resource within the data domain service (folder, item, or version).
security:
- 2-legged:
- data:create
- 3-legged:
- data:create
parameters:
- $ref: '#/components/parameters/x-user-id'
responses:
'204':
description: A custom relationship for the item was successfully created.
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/RelationshipRefsPayload'
description: ''
/data/v1/projects/{project_id}/items/{item_id}/refs:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItemRefs
summary: List Related Resources for an Item
description: 'Returns the resources (items, folders, and versions) that have a custom relationship with the specified item. Custom relationships can be established between an item and other resources within the data domain service (folders, items, and versions).
Each relationship is defined by the ID of the object at the other end of the relationship, together with type, attributes, and relationships links.
Callers will typically use a filter parameter to restrict the response to the custom relationship types (``filter[meta.refType]``) they are interested in.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
- $ref: '#/components/parameters/filter_type_version'
- $ref: '#/components/parameters/filter_id'
- $ref: '#/components/parameters/filter_extension_type'
responses:
'200':
description: The list of related resources was successfully retrieved.
content:
application/json:
schema:
$ref: '#/components/schemas/Refs'
'400':
$ref: '#/components/responses/400-general'
'403':
description: Forbidden
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/items/{item_id}/relationships/links:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItemRelationshipsLinks
summary: List Relationship Links for an Item
description: "Returns a list of links for the specified item. \n\nCustom relationships can be established between an item and other external resources residing outside the data domain service. A link’s ``href`` attribute defines the target URI to access a resource.\n\n**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). "
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
responses:
'200':
description: The relationship links for the item were retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/RelationshipLinks'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/items/{item_id}/tip:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItemTip
summary: Get Tip Version of an Item
description: 'Returns the latest version of the specified item. A project can contain multiple versions of a resource item. The latest version is referred to as the tip version, which is returned by this operation.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
responses:
'200':
description: The tip version of the item was retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/ItemTip'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/items/{item_id}/versions:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/item_id'
get:
tags:
- Items
operationId: getItemVersions
summary: List all Versions of an Item
description: 'Lists all versions of the specified item. A project can contain multiple versions of a resource item.
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:read
- 3-legged:
- data:read
parameters:
- $ref: '#/components/parameters/x-user-id'
- $ref: '#/components/parameters/filter_id'
- $ref: '#/components/parameters/filter_extension_type'
- $ref: '#/components/parameters/filter_versionNumber'
- $ref: '#/components/parameters/page_number'
- $ref: '#/components/parameters/page_limit'
responses:
'200':
description: All versions of the specified item were successfully retrieved.
content:
application/json:
schema:
$ref: '#/components/schemas/Versions'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/items:
parameters:
- $ref: '#/components/parameters/project_id'
post:
tags:
- Items
operationId: createItem
summary: Create an Item
description: "Creates the first version of a file (item). To create additional versions of an item, use POST versions.\n\nBefore you create the first version of an item, you must create a placeholder for the file, and upload the file to the placeholder. For more details about the workflow, see the tutorial on uploading a file.\n\nThis operation also allows you to create a new item by copying a specific version of an existing item to another folder. The copied version becomes the first version of the new item in the target folder.\n\n**Note:** You cannot copy versions of items across different projects and accounts.\n\nUse the [Create Version](/en/docs/data/v2/reference/http/projects-project_id-versions-POST/) operation with the ``copyFrom`` parameter if you want to create a new version of an item by copying a specific version of another item. \n\nBefore you use the Data Management API to access BIM 360 Docs files, you must provision your app through the BIM 360 Account Administrator portal. For details, see the [Manage Access to Docs tutorial](/en/docs/bim360/v1/tutorials/getting-started/manage-access-to-docs/).\n\n**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](https://en.docs.acc.v1/overview/introduction/). "
security:
- 2-legged:
- data:create
- 3-legged:
- data:create
parameters:
- $ref: '#/components/parameters/copyFrom'
- schema:
type: string
in: query
name: x-user-id
description: "In a two-legged authentication context, the app has access to all users specified by the administrator in the SaaS integrations UI. By providing this header, the API call will be limited to act on behalf of only the user specified. \n\nNote that for a three-legged OAuth flow or for a two-legged OAuth flow with user impersonation (``x-user-id``), the users of your app must have permission to upload files to the specified parent folder (``data.attributes.relationships.parent.data.id``).\n\nFor copying files, users of your app must have permission to view the source folder. \n\nFor information about managing and verifying folder permissions for BIM 360 Docs, see the section on [Managing Folder Permissions](http://help.autodesk.com/view/BIM360D/ENU/?guid=GUID-2643FEEF-B48A-45A1-B354-797DAD628C37).'\n"
responses:
'201':
description: The first version of an item was successfully created.
content:
application/json:
schema:
$ref: '#/components/schemas/CreatedItem'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
'409':
$ref: '#/components/responses/409-general'
'423':
$ref: '#/components/responses/423-general'
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/ItemPayload'
description: ''
components:
responses:
403-general:
description: The request was successfully validated but permission is not granted, or the application has not been allowed access. Do not try again unless you resolve permissions first.
content:
application/json:
schema:
type: object
x-examples:
Example 1:
jsonapi: {}
links: {}
data: []
meta:
warnings:
- Id: null
HttpStatusCode: '403'
ErrorCode: BIM360DM_ERROR
Title: Unable to get hubs from BIM360DM APAC.
Detail: You don't have permission to access this API
AboutLink: null
Source: null
meta: null
properties:
jsonapi:
type: object
description: The JSON API object.
links:
type: object
description: An object intended to contain the URI of a resource. Empty in this case, because an error has occurred.
data:
type: array
description: An object intended to contain the return data. Empty in this case, because an error has occurred.
items:
type: object
meta:
type: object
description: Contains information about the error that occurred.
properties:
warnings:
type: array
description: An array of objects, where each element of the array represents a warning.
items:
type: object
properties:
Id:
description: An ID assigned to the warning.
nullable: true
HttpStatusCode:
type: string
description: The HTTP status code returned in response to the request.
ErrorCode:
type: string
description: A code that indicates what went wrong.
Title:
type: string
description: A quick summary of the issue, at a glance.
Detail:
type: string
description: A more comprehensive explanation of the issue, providing specific information and potential solutions, if any.
AboutLink:
description: A hyperlink to documentation about the issue.
nullable: true
Source:
description: Information about the service that detected the issue.
nullable: true
meta:
description: Additional information about the issue.
nullable: true
409-general:
description: The specified resource already exists or has been modified.
content:
application/json:
schema:
properties:
id:
type: string
404-general:
description: The specified resource was not found.
content:
application/json:
schema:
properties:
id:
type: string
400-general:
description: The request could not be understood by the server due to malformed syntax or missing request headers. The client SHOULD NOT repeat the request without modifications. The response body may give an indication of what is wrong with the request.
content:
application/json:
schema:
properties:
id:
type: string
423-general:
description: The source or destination resource is locked or being modified.
content:
application/json:
schema:
properties:
id:
type: string
schemas:
json_api_meta_link:
title: json_api_meta_link
x-stoplight:
id: 6c1450io6o3zx
type: object
description: Meta-information on links to this resource.
properties:
link:
$ref: '#/components/schemas/json_api_link'
x-stoplight:
id: haazb0d04arzm
type_link:
type: string
x-stoplight:
id: f84280dd62b59
enum:
- links
description: The type of the resource. Possible values are ``links``.
type_entity:
type: string
enum:
- folders
- items
- versions
description: The type of the resource. Possible values are ``folders``, ``items``, ``versions``.
web_view_link:
title: web_view_link
x-stoplight:
id: b0lyf514eksq4
type: object
description: An object containing a link that opens the resource in a browser.
properties:
href:
type: string
x-stoplight:
id: j0xj0hp05wo0l
description: The location (URL) of the resource the link points to.
required:
- href
json_api_relationships_links_versions:
title: json_api_relationships_links_internal
x-stoplight:
id: da5pz40rvqocl
type: object
description: Information about the existing versions of the item.
properties:
links:
$ref: '#/components/schemas/json_api_links_related'
x-stoplight:
id: s7etnb8jkm02f
required:
- links
type_folder:
type: string
enum:
- folders
description: The type of the resource. Possible values are ``folders``.
json_api_relationships_links_internal:
title: json_api_relationships_links_internal
x-stoplight:
id: da5pz40rvqocl
type: object
description: Information on resources that are found under this resource.
properties:
links:
$ref: '#/components/schemas/json_api_links_related'
x-stoplight:
id: s7etnb8jkm02f
required:
- links
VersionData:
title: 'Version Data:'
description: A container of data describing a version.
x-stoplight:
id: eb2zg50zz7eul
type: object
properties:
type:
$ref: '#/components/schemas/type_version'
id:
type: string
minLength: 1
description: URN of the version object.
attributes:
$ref: '#/components/schemas/VersionAttributes'
relationships:
type: object
description: Contains information on other resources related to this resource.
required:
- item
- refs
- links
properties:
item:
type: object
description: Contains information about the item this is a version of.
properties:
links:
$ref: '#/components/schemas/json_api_links_related'
x-stoplight:
id: fklud6hg20fwz
data:
$ref: '#/components/schemas/json_api_type_id'
x-stoplight:
id: g661wq5zxnxxz
refs:
$ref: '#/components/schemas/json_api_relationships_links_refs'
links:
$ref: '#/components/schemas/json_api_relationships_links_links'
storage:
type: object
x-stoplight:
id: p77erscy2c106
description: Contains information about the storage location that contains the binary data of this version.
properties:
data:
$ref: '#/components/schemas/json_api_type_id'
meta:
$ref: '#/components/schemas/json_api_meta_link'
derivatives:
type: object
x-stoplight:
id: 1by3hohlaohio
description: Contains information you can use to retrieve the derivatives of this version.
properties:
data:
$ref: '#/components/schemas/json_api_type_id'
meta:
$ref: '#/components/schemas/json_api_meta_link'
thumbnails:
type: object
x-stoplight:
id: hrzlgcn3r896v
description: 'Contains the information required to retrieve thumbnails of this version from the Model Derivative service. '
properties:
data:
$ref: '#/components/schemas/json_api_type_id'
meta:
$ref: '#/components/schemas/json_api_meta_link'
downloadFormats:
type: object
x-stoplight:
id: r875g22qvyi3v
description: Contains the endpoint you can use to find out what formats the version can be downloaded as.
properties:
links:
$ref: '#/components/schemas/json_api_links_related'
x-stoplight:
id: 41n0be6z8nbng
links:
$ref: '#/components/schemas/json_api_links_self_and_web_view'
required:
- type
- id
- attributes
- relationships
base_attributes_extension_object_with_schema_link:
title: 'base_attributes_extension_object_with_schema_link:'
x-stoplight:
id: aj8zaihf7alzp
type: object
description: A container of additional properties that extends this resource.
properties:
type:
type: string
x-stoplight:
id: jdli2qhh88jq3
description: The Type ID of the schema that defines the structure of the ``extension.data`` object.
version:
type: string
x-stoplight:
id: x1l84lpe0ce01
description: The version of the schema that applies to the ``extension.data`` object.
schema:
type: object
x-stoplight:
id: el8fixpzd4k3a
description: A container for the hyperlink to the schema of the type.
required:
- href
properties:
href:
type: string
x-stoplight:
id: oh11qown58iob
description: A hypertext reference to the location of the referenced resource.
data:
type: object
x-stoplight:
id: 5h0r1ilaapxra
description: The object that contains the additional properties that extends this resource.
additionalProperties:
type: object
description: 'Key-value pairs that contain the name and data of additional properties.
'
required:
- type
- version
- schema
nested_xref:
type: string
x-stoplight:
id: e8d7c1f07c607
enum:
- attachment
- overlay
description: 'The type of the xref, which defines how nested xrefs are handled. Possible values are:
- ``attachment``: Nested xrefs are not ignored.
- ``overlay`` : Nested xrefs are ignored.'
ItemTip:
description: An object that represents the tip version of an item.
type: object
x-examples:
example-1:
jsonapi:
version: '1.0'
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D2
data:
type: versions
id: urn:adsk.wipprod:fs.file:vf.b909RzMKR4mhc3O7UBY_8g?version=2
attributes:
name: version-test.pdf
displayName: version-test.pdf
createTime: '2016-04-01T11:12:35.000Z'
createUserId: BW9RM76WZBGL
createUserName: John Doe
lastModifiedTime: '2016-04-01T11:15:22.000Z'
lastModifiedUserId: BW9RM76WZBGL
lastModifiedUserName: John Doe
versionNumber: 2
mimeType: application/pdf
extension:
type: versions:autodesk.bim360:File
version: '1.0'
schema:
href: https://developer.api.autodesk.com/schema/v1/versions/versions%3Aautodesk.bim360%3AFile-1.0
data:
tempUrn: null
properties: {}
storageUrn: urn:adsk.objects:os.object:wip.dm.prod/9f8bdc3f-e29c-4ada-ab7b-bb8dfa821163.pdf
storageType: OSS
conformingStatus: NONE
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D2
webView:
href: https://docs.b360.autodesk.com/projects/c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Afs.folder%3Aco.0J4paz_FQgWPX2QRsaBkiw/detail/viewer/items/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D2
relationships:
item:
links:
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn%3Aadsk.wipprod%3Adm.lineage%3Ab909RzMKR4mhc3O7UBY_8g
data:
type: items
id: urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g
refs:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D2/relationships/refs
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D2/refs
links:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D2/relationships/links
storage:
meta:
link:
href: /oss/v2/buckets/wipbucket/objects/9f8bdc3f-e29c-4ada-ab7b-bb8dfa821163.pdf?scopes=b360project.6f8813fe-31a7-4440-bc63-d8ca97c856b4,global,O2tenant.tenantId
data:
type: objects
id: urn:adsk.objects:os.object:wip.dm.prod/9f8bdc3f-e29c-4ada-ab7b-bb8dfa821163.pdf
derivatives:
data:
type: derivatives
id: dXJuOmFkc2sud2lwcWE6ZnMuZmlsZTp2Zi50X3hodWwwYVFkbWhhN2FBaVBuXzlnP3ZlcnNpb249MQ
meta:
link:
href: /modelderivative/v2/designdata/dXJuOmFkc2sud2lwcWE6ZnMuZmlsZTp2Zi50X3hodWwwYVFkbWhhN2FBaVBuXzlnP3ZlcnNpb249MQ/manifest?scopes=b360project.6f8813fe-31a7-4440-bc63-d8ca97c856b4,global,O2tenant.tenantId
thumbnails:
data:
type: thumbnails
id: dXJuOmFkc2sud2lwcWE6ZnMuZmlsZTp2Zi50X3hodWwwYVFkbWhhN2FBaVBuXzlnP3ZlcnNpb249MQ
meta:
link:
hr
# --- truncated at 32 KB (122 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/autodesk-fusion/refs/heads/main/openapi/autodesk-fusion-items-api-openapi.yml