All URIs are relative to http://localhost
| Method | HTTP request | Description |
|---|---|---|
| createProjectWebHook | POST /cloud/{cloud_pk}/project/{project_pk}/webhook | Create a new project Webhook |
| createWebHook | POST /cloud/{cloud_pk}/webhook | Create a new Webhook |
| deleteProjectWebHook | DELETE /cloud/{cloud_pk}/project/{project_pk}/webhook/{id} | Delete a webhook |
| deleteWebHook | DELETE /cloud/{cloud_pk}/webhook/{id} | Delete a webhook |
| getProjectWebHook | GET /cloud/{cloud_pk}/project/{project_pk}/webhook/{id} | Retrieve one configured project webhook |
| getProjectWebHooks | GET /cloud/{cloud_pk}/project/{project_pk}/webhook | Retrieve all configured project webhooks |
| getWebHook | GET /cloud/{cloud_pk}/webhook/{id} | Retrieve one configured webhook |
| getWebHooks | GET /cloud/{cloud_pk}/webhook | Retrieve all configured webhooks |
| pingProjectWebHook | POST /cloud/{cloud_pk}/project/{project_pk}/webhook/{id}/ping | Test a project webhook |
| pingWebHook | POST /cloud/{cloud_pk}/webhook/{id}/ping | Test a webhook |
| updateProjectWebHook | PATCH /cloud/{cloud_pk}/project/{project_pk}/webhook/{id} | Update some field of a webhook |
| updateWebHook | PATCH /cloud/{cloud_pk}/webhook/{id} | Update some field of a webhook |
WebHook createProjectWebHook(cloudPk, projectPk, webHookRequest)
Create a new project Webhook
Create a new project Webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let projectPk = 56; // Number |
let webHookRequest = new bimdata.WebHookRequest(); // WebHookRequest |
apiInstance.createProjectWebHook(cloudPk, projectPk, webHookRequest).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| projectPk | Number | ||
| webHookRequest | WebHookRequest |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
WebHook createWebHook(cloudPk, webHookRequest)
Create a new Webhook
Create a new Webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let webHookRequest = new bimdata.WebHookRequest(); // WebHookRequest |
apiInstance.createWebHook(cloudPk, webHookRequest).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| webHookRequest | WebHookRequest |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
deleteProjectWebHook(cloudPk, id, projectPk)
Delete a webhook
Delete a webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
let projectPk = 56; // Number |
apiInstance.deleteProjectWebHook(cloudPk, id, projectPk).then(() => {
console.log('API called successfully.');
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. | |
| projectPk | Number |
null (empty response body)
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: Not defined
- Accept: Not defined
deleteWebHook(cloudPk, id)
Delete a webhook
Delete a webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
apiInstance.deleteWebHook(cloudPk, id).then(() => {
console.log('API called successfully.');
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. |
null (empty response body)
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: Not defined
- Accept: Not defined
WebHook getProjectWebHook(cloudPk, id, projectPk)
Retrieve one configured project webhook
Retrieve one configured project webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
let projectPk = 56; // Number |
apiInstance.getProjectWebHook(cloudPk, id, projectPk).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. | |
| projectPk | Number |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: Not defined
- Accept: application/json
[WebHook] getProjectWebHooks(cloudPk, projectPk)
Retrieve all configured project webhooks
Retrieve all configured project webhooks Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let projectPk = 56; // Number |
apiInstance.getProjectWebHooks(cloudPk, projectPk).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| projectPk | Number |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: Not defined
- Accept: application/json
WebHook getWebHook(cloudPk, id)
Retrieve one configured webhook
Retrieve one configured webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
apiInstance.getWebHook(cloudPk, id).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: Not defined
- Accept: application/json
[WebHook] getWebHooks(cloudPk)
Retrieve all configured webhooks
Retrieve all configured webhooks Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
apiInstance.getWebHooks(cloudPk).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: Not defined
- Accept: application/json
WebHook pingProjectWebHook(cloudPk, id, projectPk, webHookRequest)
Test a project webhook
Trigger a Ping Event sending {"ok": true} to the webhook URL. Useful to test your app Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
let projectPk = 56; // Number |
let webHookRequest = new bimdata.WebHookRequest(); // WebHookRequest |
apiInstance.pingProjectWebHook(cloudPk, id, projectPk, webHookRequest).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. | |
| projectPk | Number | ||
| webHookRequest | WebHookRequest |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
WebHook pingWebHook(cloudPk, id, webHookRequest)
Test a webhook
Trigger a Ping Event sending {"ok": true} to the webhook URL. Useful to test your app Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
let webHookRequest = new bimdata.WebHookRequest(); // WebHookRequest |
apiInstance.pingWebHook(cloudPk, id, webHookRequest).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. | |
| webHookRequest | WebHookRequest |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
WebHook updateProjectWebHook(cloudPk, id, projectPk, opts)
Update some field of a webhook
Update some field of a webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
let projectPk = 56; // Number |
let opts = {
'patchedWebHookRequest': new bimdata.PatchedWebHookRequest() // PatchedWebHookRequest |
};
apiInstance.updateProjectWebHook(cloudPk, id, projectPk, opts).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. | |
| projectPk | Number | ||
| patchedWebHookRequest | PatchedWebHookRequest | [optional] |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json
WebHook updateWebHook(cloudPk, id, opts)
Update some field of a webhook
Update some field of a webhook Required scopes: webhook:manage
import bimdata from '@bimdata/bimdata-api-client';
let defaultClient = bimdata.ApiClient.instance;
// Configure API key authorization: ApiKey
let ApiKey = defaultClient.authentications['ApiKey'];
ApiKey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKey.apiKeyPrefix = 'Token';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure OAuth2 access token for authorization: BIMData_Connect
let BIMData_Connect = defaultClient.authentications['BIMData_Connect'];
BIMData_Connect.accessToken = 'YOUR ACCESS TOKEN';
// Configure API key authorization: Bearer
let Bearer = defaultClient.authentications['Bearer'];
Bearer.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Bearer.apiKeyPrefix = 'Token';
let apiInstance = new bimdata.WebhookApi();
let cloudPk = 56; // Number |
let id = 56; // Number | A unique integer value identifying this web hook.
let opts = {
'patchedWebHookRequest': new bimdata.PatchedWebHookRequest() // PatchedWebHookRequest |
};
apiInstance.updateWebHook(cloudPk, id, opts).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| cloudPk | Number | ||
| id | Number | A unique integer value identifying this web hook. | |
| patchedWebHookRequest | PatchedWebHookRequest | [optional] |
ApiKey, BIMData_Connect, BIMData_Connect, Bearer
- Content-Type: application/json, application/x-www-form-urlencoded, multipart/form-data
- Accept: application/json