これは、RESTコール(GET、POST、PUT、PATCH、DELETE)を使用して管理システムと相互作用する可能性を文書化したもので、プロジェクトやユーザーを作成するようなタスクの自動化を可能にします。
...
リソース | メソッド | 説明 |
---|---|---|
/node/logins | GET | 過去5年間のプロジェクトのログイン統計を、クライアントの使用タイプ(Revit、dRofusなど)別にグループ化して取得します。 |
/node/logins?from_date=2018-01-01&to_date=2019-12-31 | GET | 指定された期間のプロジェクトのログイン統計情報を、使用しているクライアントのタイプごとにグループ化して取得します (Revit、dRofusなど)。 |
/node/unique_users | GET | 過去5年間の各プロジェクトのユニーク・ユーザー数を取得します。 |
/node/unique_users?from_date=2018-01-01&to_date=2019-12-31 | GEt | 指定された期間における各プロジェクトのユニークユーザー数を取得します。 |
/project_data?from_date=2018-01-01&to_date=2019-12-31 | GEt | プロジェクトの統計値を取得、to_dateとfrom_dateは、日付のオプション制限です。 |
/password/request_reset | GET | 有効なユーザー名でのポスト リクエストは、パスワードリセットメールをトリガーします。 |
/password/reset | GET | APIでパスワードを変更するには、トークンとともにこれを使用します。 |
/owners/[id]/tasks/[TaskName]/run?source=[sourcedb]©_ids=[ids] | POST | 特定の所有者の全データベースに対して特定のタスクを実行します。タスク名 (TaskName)は以下のいずれかです。
|
...
パラメータ | 説明 |
---|---|
new_db | 1 to create a new database or 0 to add project to an existing database |
new_db_template | If creating a new database, provide the database name that would be used as a template |
new_db_name | If creating a new database, provide the name of the new database |
existing_db_name | If NOT creating a new database (new_db set to 0) provide the name of the existing database to add the new project to |
name | Name of the project |
constructor | Name of the constructor/firm of the new project |
description | Description of the project |
owner_id | ID of the owner |
project_type_id | Type of project. Use one of the following values id │ name |
All the parameters are mandatory
Exampleすべてのパラメータは必須です。
例
Code Block |
---|
{ "project": { "new_db": "1", "new_db_template": "dev-template", "new_db_name": "rest_test", "project_type_id": 1, "name": "REST TEST", "owner_id": 5, "description": "TEST CREATE FROM REST", "constructor" : "dRofus AS" } } |
...