Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/autodesk-fusion-folders-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Construction.Account.Admin Account Management Folders 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: Folders
paths:
/data/v1/projects/{project_id}/folders/{folder_id}:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/folder_id'
get:
tags:
- Folders
operationId: getFolder
summary: Get a Folder
description: 'Returns the folder specified by the ``folder_id`` parameter from within the project identified by the ``project_id`` parameter. All folders and subfolders within a project (including the root folder) have a unique ID.
**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/If-Modified-Since'
- $ref: '#/components/parameters/x-user-id'
responses:
'200':
description: The specified folder was successfully retrieved.
content:
application/json:
schema:
$ref: '#/components/schemas/Folder'
'304':
$ref: '#/components/responses/304-general'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
patch:
tags:
- Folders
operationId: patchFolder
summary: Modify a Folder
description: 'Renames, moves, hides, or unhides a folder. Marking a BIM 360 Docs folder as hidden effectively deletes it. You can restore it by changing its ``hidden`` attribute. You can also move BIM 360 Docs folders by changing their parent folder.
You cannot permanently delete BIM 360 Docs folders. They are tagged as hidden folders and are removed from the BIM 360 Docs UI and from regular Data Management API responses. You can use the hidden filter (``filter[hidden]=true``) to get a list of deleted folders with the [List Folder Contents](/en/docs/data/v2/reference/http/projects-project_id-folders-folder_id-contents-GET/) operation.
Before you use the Data Management API to access BIM 360 Docs folders, 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/).
**Note:** This operation supports Autodesk Construction Cloud (ACC) Projects. For more information, see the [ACC Platform API documentation](/en.docs.acc.v1/overview/introduction/). '
security:
- 2-legged:
- data:write
- 3-legged:
- data:write
parameters:
- $ref: '#/components/parameters/x-user-id'
responses:
'200':
description: The folder was successfully modified.
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'
'423':
$ref: '#/components/responses/423-general'
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/ModifyFolderPayload'
description: Describe the folder to be patched.
x-folder-id: projects-project_id-folders-folder_id-PATCH
/data/v1/projects/{project_id}/folders/{folder_id}/parent:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/folder_id'
get:
tags:
- Folders
operationId: getFolderParent
summary: Get Parent of a Folder
description: 'Returns the parent folder of the specified folder. In a project, folders are organized in a hierarchy. Each folder except for the root folder has a parent folder.
**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'
x-folder-id: projects-project_id-folders-folder_id-parent-GET
/data/v1/projects/{project_id}/folders/{folder_id}/contents:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/folder_id'
get:
tags:
- Folders
operationId: getFolderContents
summary: List Folder Contents
description: 'Returns a list of items and folders within the specified folder. Items represent word documents, fusion design files, drawings, spreadsheets, etc.
The resources contained in the ``included`` array of the response are their tip versions.
**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'
- $ref: '#/components/parameters/filter_id'
- $ref: '#/components/parameters/filter_extension_type'
- $ref: '#/components/parameters/filter_lastModifiedTimeRollup'
- $ref: '#/components/parameters/page_number'
- $ref: '#/components/parameters/page_limit'
- $ref: '#/components/parameters/includeHidden'
responses:
'200':
description: The content of the specified folder was successfully returned.
content:
application/json:
schema:
$ref: '#/components/schemas/FolderContents'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/folders/{folder_id}/refs:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/folder_id'
get:
tags:
- Folders
operationId: getFolderRefs
summary: List Related Resources for a Folder
description: 'Returns the resources (items, folders, and versions) that have a custom relationship with the specified folder. Custom relationships can be established between a folder 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 retrieved successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/FolderRefs'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/folders/{folder_id}/search:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/folder_id'
get:
tags:
- Folders
operationId: getFolderSearch
summary: List Folder and Subfolder Contents
description: "Searches the specified folder and its subfolders and returns a list of the latest versions of the items you can access.\n\n\nUse the ``filter`` query string parameter to narrow down the list as appropriate. You can filter by the following properties of the version payload: \n\n- ``type`` property, \n- ``id`` property, \n- any of the attributes object properties. \n\nFor example, you can filter by ``createTime`` and ``mimeType``. It returns tip versions (latest versions) of properties where the filter conditions are satisfied. To verify the properties of the attributes object for a specific version, use the [Get a Version](/en/docs/data/v2/reference/http/projects-project_id-versions-version_id-GET/) operation.\n\nTo list the immediate contents of the folder without parsing subfolders, use the [List Folder Contents](/en/docs/data/v2/reference/http/projects-project_id-folders-folder_id-contents-GET/) operation.\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:
- 3-legged:
- data:read
- data:search
parameters:
- $ref: '#/components/parameters/filter'
- $ref: '#/components/parameters/page_number'
responses:
'200':
description: 'The contents of the folder and its subfolders were successfully returned. '
content:
application/json:
schema:
$ref: '#/components/schemas/Search'
'400':
$ref: '#/components/responses/400-general'
'403':
$ref: '#/components/responses/403-general'
'404':
$ref: '#/components/responses/404-general'
/data/v1/projects/{project_id}/folders/{folder_id}/relationships/refs:
parameters:
- $ref: '#/components/parameters/folder_id'
- $ref: '#/components/parameters/project_id'
get:
tags:
- Folders
operationId: getFolderRelationshipsRefs
summary: List Custom Relationships for a Folder
description: "Returns the custom relationships associated with the specified folder. Custom relationships can be established between a folder and other resources within the data domain service (folders, items, and versions).\n\nEach 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.\nCallers will typically use a filter parameter to restrict the response to the custom relationship types (``filter[meta.refType]``) they are interested in.\nThe 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 a Folder](/en/docs/data/v2/reference/http/projects-project_id-folders-folder_id-refs-GET/) operation. \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'
- $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:
- Folders
operationId: createFolderRelationshipsRef
summary: Create a Custom Relationship for a Folder
description: Creates a custom relationship between a folder 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: The reference between resources 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}/folders/{folder_id}/relationships/links:
parameters:
- $ref: '#/components/parameters/project_id'
- $ref: '#/components/parameters/folder_id'
get:
tags:
- Folders
operationId: getFolderRelationshipsLinks
summary: List Relationship Links for a Folder
description: "Returns a list of links for the specified folder. \n\nCustom relationships can be established between a folder 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: Successful retrieval of the links collection associated with a specific resource.
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}/folders:
parameters:
- $ref: '#/components/parameters/project_id'
post:
tags:
- Folders
operationId: createFolder
summary: Create a Folder
description: 'Creates a new folder in the specified project. Use the ``parent`` attribute in the request body to specify where in the hierarchy the new folder should be located. Folders can be nested up to 25 levels deep.
Use the `Modify a Folder </en/docs/data/v2/reference/http/projects-project_id-folders-folder_id-PATCH/>`_ operation to delete and restore folders.
Before you use the Data Management API to access BIM 360 Docs folders, 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/).
**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/x-user-id'
responses:
'201':
description: Successful creation of a folder.
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'
'409':
$ref: '#/components/responses/409-general'
'423':
$ref: '#/components/responses/423-general'
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/FolderPayload'
description: ''
components:
schemas:
json_api_version_value:
description: The version of JSON API. Will always be ``1.0``.
type: string
enum:
- '1.0'
json_api_links_self:
title: json_api_links_self
x-stoplight:
id: hedbm6v3pcz7k
type: object
description: An object containing the URI of the endpoint to access this resource.
properties:
self:
type: object
x-stoplight:
id: xjz8a6shpmaya
description: An object containing the URI of the endpoint to access this resource.
properties:
href:
type: string
x-stoplight:
id: jx2lmnxrl8f10
description: "The URI of the endpoint to access this \nresource."
type_folder:
type: string
enum:
- folders
description: The type of the resource. Possible values are ``folders``.
FolderRefs:
x-stoplight:
id: t3y8er58rjswv
type: object
x-examples:
example-1:
jsonapi:
version: '1.0'
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn:adsk.wipprod:dm.folder:hC6k4hndRWaeIVhIjvHu8w/refs
data:
- type: folders
id: urn:adsk.wipprod:dm.folder:hC6k4hndRWaeIVhIjvHu8w
attributes:
name: Plans
displayName: Plans
createTime: '2015-11-27T11:11:23.000Z'
createUserId: BW9RM76WZBGL
createUserName: John Doe
lastModifiedTime: '2015-11-27T11:11:27.000Z'
lastModifiedUserId: BW9RM76WZBGL
lastModifiedUserName: John Doe
objectCount: 4
hidden: false
extension:
type: folders:autodesk.bim360:Folder
version: '1.0'
schema:
href: https://developer.api.autodesk.com/schema/v1/versions/folders%3Aautodesk.bim360%3AFolder-1.0
data:
allowedTypes:
- folders
- items:autodesk.bim360:File
- items:autodesk.bim360:Document
- items:autodesk.bim360:TitleBlock
visibleTypes:
- folders
- items:autodesk.bim360:Document
namingStandardIds: []
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w
webView:
href: https://docs.b360.autodesk.com/projects/c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w
relationships:
parent:
links:
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w/parent
data:
type: folders
id: urn:adsk.wipprod:dm.folder:sdfedf8wefl
refs:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w/relationships/refs
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w/refs
links:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w/relationships/links
contents:
links:
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/folders/urn%3Aadsk.wipprod%3Adm.folder%3AhC6k4hndRWaeIVhIjvHu8w/contents
- 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: /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
- type: versions
id: urn:adsk.wipprod:fs.file:vf.b909RzMKR4mhc3O7UBY_8g?version=1
attributes:
name: version-test.pdf
displayName: version-test.pdf
createTime: '2016-04-01T11:09:03.000Z'
createUserId: BW9RM76WZBGL
createUserName: John Doe
lastModifiedTime: '2016-04-01T11:11:18.000Z'
lastModifiedUserId: BW9RM76WZBGL
lastModifiedUserName: John Doe
versionNumber: 1
mimeType: application/pdf
extension:
type: versions:autodesk.bim360:File
version: '1.0'
schema:
href: /schema/v1/versions/versions%3Aautodesk.bim360%3AFile-1.0
data:
tempUrn: null
properties: {}
storageUrn: urn:adsk.objects:os.object:wip.dm.prod/3c8f6bbc-fe5c-4815-a92e-8b8635e7b1cb.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%3D1
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%3D1
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%3D1/relationships/refs
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D1/refs
links:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/versions/urn%3Aadsk.wipprod%3Afs.file%3Avf.b909RzMKR4mhc3O7UBY_8g%3Fversion%3D1/relationships/links
storage:
meta:
link:
href: /oss/v2/buckets/wipbucket/objects/3c8f6bbc-fe5c-4815-a92e-8b8635e7b1cb.pdf?scopes=b360project.6f8813fe-31a7-4440-bc63-d8ca97c856b4,global,O2tenant.tenantId
data:
type: objects
id: urn:adsk.objects:os.object:wip.dm.prod/3c8f6bbc-fe5c-4815-a92e-8b8635e7b1cb.pdf
- type: items
id: urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g
attributes:
displayName: version-test.pdf
createTime: '2016-04-01T11:09:03.000Z'
createUserId: BW9RM76WZBGL
createUserName: John Doe
lastModifiedTime: '2016-04-01T11:11:18.000Z'
lastModifiedUserId: BW9RM76WZBGL
lastModifiedUserName: John Doe
hidden: false
reserved: true
reservedTime: '2016-04-01T11:10:08.000Z'
reservedUserId: BW9RM76WZBGL
reservedUserName: John Doe
extension:
data: {}
version: '1.0'
type: items:autodesk.bim360:File
schema:
href: https://developer.api.autodesk.com/schema/v1/versions/items%3Aautodesk.bim360%3AFile-1.0
relationships:
tip:
data:
type: versions
id: urn:adsk.wipprod:fs.file:vf.b909RzMKR4mhc3O7UBY_8g?version=2
links:
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn%3Aadsk.wipprod%3Adm.lineage%3AhC6k4hndRWaeIVhIjvHu8w/tip
parent:
data:
type: folders
id: urn:adsk.wipprod:dm.folder:sdfedf8wefl
links:
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g/parent
versions:
links:
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g/versions
refs:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g/relationships/refs
related:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g/refs
links:
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g/relationships/links
links:
self:
href: /data/v1/projects/b.c2960674-2d1e-4cc8-a5f0-4b9026fd3f5d/items/urn:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g
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:adsk.wipprod:dm.lineage:b909RzMKR4mhc3O7UBY_8g
title: FolderRefs
properties:
jsonapi:
$ref: '#/components/schemas/json_api_version'
links:
$ref: '#/components/schemas/json_api_links_self'
data:
type: array
x-stoplight:
id: hmbdvuvi4355j
description: An array of objects, where each object represents a folder, item, or version.
items:
x-stoplight:
id: 78qlz07jj469e
oneOf:
- $ref: '#/components/schemas/FolderData'
x-stoplight:
id: 23uxjwhw6peog
- $ref: '#/components/schemas/ItemData'
x-stoplight:
id: 6bxzhieo6paec
- $ref: '#/components/schemas/VersionData'
x-stoplight:
id: porh9vpw16r4y
discriminator:
propertyName: type
mapping:
folders: '#/components/schemas/FolderData'
items: '#/components/schemas/ItemData'
versions: '#/components/schemas/VersionData'
version_extension_with_schema_link:
type: object
description: A container of additional properties that extends the default properties of a version.
properties:
type:
type: string
description: The Type ID of the schema that defines the structure of the ``extension.data`` object.
version:
type: string
description: The version of the schema that applies to the ``extension.data`` object.
schema:
$ref: '#/components/schemas/json_api_link'
data:
type: object
description: The object that contains the additional properties, which makes this resource extensible.
additionalProperties:
type: object
# --- truncated at 32 KB (122 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/autodesk-fusion/refs/heads/main/openapi/autodesk-fusion-folders-api-openapi.yml