Delete project using BIM360 API - autodesk-forge

I have created a project using
https://developer.api.autodesk.com/hq/v1/accounts/:account_id/projects
and activate it.
Is there any option to DELETE the created project?
I have already seen that archiving via Patch is available.
Thank you!

According to the REST API design style, The HTTP method for deleting something will implement via DELETE. Unfortunately, it's not available in BIM360 HQ API currently.

Related

How can I create an incoming webhook via ReadTheDocs API?

I am aware that you can create and delete incoming webhooks using the ReadTheDocs UI (for GitHub, GitLab, etc. integration), but I need to be able to do this without accessing the UI to automate the process. Is this possible? Or will webhook management be added to the API soon?
The API v3 documentation does not list an endpoint to add an integration. Therefore, at the moment this is not possible.
For feature requests, it's better to open an issue upstream.

Third-party conferencing in Google Calendar from Google Apps Script

Is it possible to add third-party conferencing via Google Apps Script yet?
I'm referring to the functionality mentioned here: https://www.blog.google/products/g-suite/bring-teams-together-new-g-suite-integrations/
If not, is there any way to get access to it e.g. getting whitelisted?
Posting for documentation.
After going over the event documentation there does not seem to be a way to programmatically work with third-party conferencing. I created a feature request, this link will serve to keep track of updates on this issue.

Google Drive API - Authorization for Downloads Post 1.70 Beta

I updated by Google Drive SDK references to 1.70 recently and updated all of my authentication code from using IAuthorizationState and the NativeApplicationClient to using UserCredentials, Drive.Auth.Store, and a DriveService object consistent with Google's "supported" method.
Everything working with my DriveService is working great. I can upload files, list files, create files and folders. Now I'm trying to figure out how to perform the simple act of downloading files by ID and I can't determine how I can leverage my new authentication code to support downloading. The SDK examples are referencing IAuthenticator but I'm not sure if that is a legacy object and my current project can't naturally reference it (missing a reference or perhaps isn't in 1.70).
I recognize that the Drive SDK may not actually have a method of downloading a file, but I'm very confused about how I can use my clean, new authentication store (Drive.Auth.Store) which has everything I should need to authenticate with the downloading action.
A point in the right direction would be most helpful! Thanks in advance for your help.

Pulling Google Apps user creation date

What options are there to pull a GApps user creation date?
I saw that the Admin SDK is capable of it, is it the only API capable of doing this? does any of the previous one also capable of?
If possible using GAS, it will be most excellent,
Thank you!
Indeed there does not seem be Google Apps Script services to pull the creation date. The DomainUser class provide interesting functionality for interacting with domain users (only for admins).
Using the Admin SDK with Google Apps Script using UrlFetchApp.addOAuthService is not as complex as it looks. You can read this answer which will throw some light on how you can use external API calls for certain Google API and bring the data to Google Apps Script.
The scope for the ADMIN SDK will be as follows
oAuthConfig1.setRequestTokenUrl("https://www.google.com/accounts/OAuthGetRequestToken
?scope=https://www.googleapis.com/auth/admin.directory.user.readonly");
Notice that in this case I have requested a readonly scope.

Difference between comment.Patch and comment.Update in Google Drive API

I went through method documentations both patch and update and it looks they both doing the same.
And i also note that the patch doesn't required the content of the patching comment even though its required to call the patch() method.
So, is the difference between comment.patch() and the comment.update() methods in Google Drive API?
PS : I'm using Google-Drive Java SDK for my implementation.
Thanks.
Patch is used to perform partial updates and save some bandwidth when, for instance, you only want to update a single field in a resource.
For more details about how patch work and for other performance tips, please check the Google Drive SDK documentation:
https://developers.google.com/drive/performance#patch