{ "opencollection": "1.0.0", "info": { "name": "Autodesk ACC Account Admin API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Projects", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "filter[status]", "value": "", "type": "query" }, { "name": "filter[name]", "value": "", "type": "query" }, { "name": "filter[platform]", "value": "", "type": "query" }, { "name": "sort", "value": "", "type": "query", "description": "Sort field and direction (e.g., name asc, startDate desc)." }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of projects in the specified account." }, { "info": { "name": "Autodesk Create Project", "type": "http" }, "http": { "method": "POST", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects", "params": [ { "name": "accountId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Creates a new project in the account." }, { "info": { "name": "Autodesk Get Project", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects/:projectId", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "projectId", "value": "", "type": "path" } ] }, "docs": "Returns details of a specific project." }, { "info": { "name": "Autodesk Update Project", "type": "http" }, "http": { "method": "PATCH", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects/:projectId", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "projectId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Updates project details." } ] }, { "info": { "name": "Project Users", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Project Users", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects/:projectId/users", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "projectId", "value": "", "type": "path" }, { "name": "filter[email]", "value": "", "type": "query" }, { "name": "filter[name]", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns users assigned to a project." }, { "info": { "name": "Autodesk Add Project User", "type": "http" }, "http": { "method": "POST", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects/:projectId/users", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "projectId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Adds a user to a project with specified roles and products." }, { "info": { "name": "Autodesk Update Project User", "type": "http" }, "http": { "method": "PATCH", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects/:projectId/users/:userId", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "projectId", "value": "", "type": "path" }, { "name": "userId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Updates a user's role or product access in a project." }, { "info": { "name": "Autodesk Remove Project User", "type": "http" }, "http": { "method": "DELETE", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/projects/:projectId/users/:userId", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "projectId", "value": "", "type": "path" }, { "name": "userId", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Removes a user from a project." } ] }, { "info": { "name": "Account Users", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Account Users", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/users", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "filter[email]", "value": "", "type": "query" }, { "name": "filter[name]", "value": "", "type": "query" }, { "name": "filter[status]", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns users in the account directory." } ] }, { "info": { "name": "Companies", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Companies", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/companies", "params": [ { "name": "accountId", "value": "", "type": "path" }, { "name": "filter[name]", "value": "", "type": "query" }, { "name": "filter[trade]", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns partner companies in the account directory." }, { "info": { "name": "Autodesk Create Company", "type": "http" }, "http": { "method": "POST", "url": "https://developer.api.autodesk.com/construction/admin/v1/accounts/:accountId/companies", "params": [ { "name": "accountId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://developer.api.autodesk.com/authentication/v2/authorize", "accessTokenUrl": "https://developer.api.autodesk.com/authentication/v2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Creates a new partner company in the account directory." } ] }, { "info": { "name": "Industry Roles", "type": "folder" }, "items": [ { "info": { "name": "Autodesk List Industry Roles", "type": "http" }, "http": { "method": "GET", "url": "https://developer.api.autodesk.com/construction/admin/v1/projects/:projectId/industryRoles", "params": [ { "name": "projectId", "value": "", "type": "path" } ] }, "docs": "Returns the industry roles available for a project." } ] } ], "bundled": true }