@product-live/api-sdk 2.5.1 → 2.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DataFactoryFileApi.md +182 -0
- package/JobApi.md +333 -0
- package/JobExecutionApi.md +185 -0
- package/README.md +80 -0
- package/TaskApi.md +375 -0
- package/TaskExecutionApi.md +130 -0
- package/VariableApi.md +315 -0
- package/apis/DataFactoryFileApi.ts +252 -133
- package/apis/JobApi.ts +414 -201
- package/apis/JobExecutionApi.ts +237 -121
- package/apis/TaskApi.ts +458 -213
- package/apis/TaskExecutionApi.ts +174 -90
- package/apis/VariableApi.ts +406 -195
- package/apis/baseapi.ts +37 -0
- package/apis/exception.ts +15 -0
- package/auth/auth.ts +107 -0
- package/configuration.ts +82 -0
- package/dist/apis/DataFactoryFileApi.d.ts +14 -19
- package/dist/apis/DataFactoryFileApi.js +340 -103
- package/dist/apis/DataFactoryFileApi.js.map +1 -1
- package/dist/apis/JobApi.d.ts +19 -30
- package/dist/apis/JobApi.js +524 -165
- package/dist/apis/JobApi.js.map +1 -1
- package/dist/apis/JobExecutionApi.d.ts +14 -18
- package/dist/apis/JobExecutionApi.js +320 -88
- package/dist/apis/JobExecutionApi.js.map +1 -1
- package/dist/apis/TaskApi.d.ts +22 -34
- package/dist/apis/TaskApi.js +584 -171
- package/dist/apis/TaskApi.js.map +1 -1
- package/dist/apis/TaskExecutionApi.d.ts +11 -13
- package/dist/apis/TaskExecutionApi.js +242 -62
- package/dist/apis/TaskExecutionApi.js.map +1 -1
- package/dist/apis/VariableApi.d.ts +20 -31
- package/dist/apis/VariableApi.js +506 -153
- package/dist/apis/VariableApi.js.map +1 -1
- package/dist/apis/baseapi.d.ts +18 -0
- package/dist/apis/baseapi.js +46 -0
- package/dist/apis/baseapi.js.map +1 -0
- package/dist/apis/exception.d.ts +10 -0
- package/dist/apis/exception.js +32 -0
- package/dist/apis/exception.js.map +1 -0
- package/dist/auth/auth.d.ts +42 -0
- package/dist/auth/auth.js +45 -0
- package/dist/auth/auth.js.map +1 -0
- package/dist/configuration.d.ts +18 -0
- package/dist/configuration.js +22 -0
- package/dist/configuration.js.map +1 -0
- package/dist/http/http.d.ts +82 -0
- package/dist/http/http.js +229 -0
- package/dist/http/http.js.map +1 -0
- package/dist/http/isomorphic-fetch.d.ts +5 -0
- package/dist/http/isomorphic-fetch.js +34 -0
- package/dist/http/isomorphic-fetch.js.map +1 -0
- package/dist/index.d.ts +10 -3
- package/dist/index.js +17 -3
- package/dist/index.js.map +1 -1
- package/dist/middleware.d.ts +16 -0
- package/dist/middleware.js +18 -0
- package/dist/middleware.js.map +1 -0
- package/dist/models/CreateJobDto.d.ts +27 -24
- package/dist/models/CreateJobDto.js +77 -62
- package/dist/models/CreateJobDto.js.map +1 -1
- package/dist/models/CreateJobExecutionDto.d.ts +18 -8
- package/dist/models/CreateJobExecutionDto.js +29 -36
- package/dist/models/CreateJobExecutionDto.js.map +1 -1
- package/dist/models/CreateTaskDto.d.ts +20 -10
- package/dist/models/CreateTaskDto.js +41 -42
- package/dist/models/CreateTaskDto.js.map +1 -1
- package/dist/models/CreateVariableDto.d.ts +21 -16
- package/dist/models/CreateVariableDto.js +41 -46
- package/dist/models/CreateVariableDto.js.map +1 -1
- package/dist/models/FileDto.d.ts +22 -15
- package/dist/models/FileDto.js +47 -48
- package/dist/models/FileDto.js.map +1 -1
- package/dist/models/FindVariablesRequest.d.ts +24 -7
- package/dist/models/FindVariablesRequest.js +42 -33
- package/dist/models/FindVariablesRequest.js.map +1 -1
- package/dist/models/GetFiles200Response.d.ts +20 -13
- package/dist/models/GetFiles200Response.js +29 -38
- package/dist/models/GetFiles200Response.js.map +1 -1
- package/dist/models/GetJobExecutionById400Response.d.ts +16 -6
- package/dist/models/GetJobExecutionById400Response.js +17 -30
- package/dist/models/GetJobExecutionById400Response.js.map +1 -1
- package/dist/models/GetJobExecutions200Response.d.ts +20 -13
- package/dist/models/GetJobExecutions200Response.js +29 -38
- package/dist/models/GetJobExecutions200Response.js.map +1 -1
- package/dist/models/GetJobs200Response.d.ts +20 -13
- package/dist/models/GetJobs200Response.js +29 -38
- package/dist/models/GetJobs200Response.js.map +1 -1
- package/dist/models/GetTasks200Response.d.ts +20 -13
- package/dist/models/GetTasks200Response.js +29 -38
- package/dist/models/GetTasks200Response.js.map +1 -1
- package/dist/models/GetVariables200Response.d.ts +20 -13
- package/dist/models/GetVariables200Response.js +29 -38
- package/dist/models/GetVariables200Response.js.map +1 -1
- package/dist/models/HighOrderQuery.d.ts +19 -13
- package/dist/models/HighOrderQuery.js +23 -37
- package/dist/models/HighOrderQuery.js.map +1 -1
- package/dist/models/JobDto.d.ts +32 -32
- package/dist/models/JobDto.js +101 -77
- package/dist/models/JobDto.js.map +1 -1
- package/dist/models/JobExecutionDto.d.ts +28 -21
- package/dist/models/JobExecutionDto.js +83 -66
- package/dist/models/JobExecutionDto.js.map +1 -1
- package/dist/models/LowOrderQuery.d.ts +21 -22
- package/dist/models/LowOrderQuery.js +35 -49
- package/dist/models/LowOrderQuery.js.map +1 -1
- package/dist/models/LowOrderQueryValue.d.ts +16 -0
- package/dist/models/LowOrderQueryValue.js +15 -0
- package/dist/models/LowOrderQueryValue.js.map +1 -0
- package/dist/models/ObjectSerializer.d.ts +34 -0
- package/dist/models/ObjectSerializer.js +313 -0
- package/dist/models/ObjectSerializer.js.map +1 -0
- package/dist/models/PatchTaskExecutionDto.d.ts +19 -13
- package/dist/models/PatchTaskExecutionDto.js +29 -40
- package/dist/models/PatchTaskExecutionDto.js.map +1 -1
- package/dist/models/Query.d.ts +17 -20
- package/dist/models/Query.js +17 -43
- package/dist/models/Query.js.map +1 -1
- package/dist/models/TaskDto.d.ts +25 -18
- package/dist/models/TaskDto.js +65 -57
- package/dist/models/TaskDto.js.map +1 -1
- package/dist/models/TaskExecutionDto.d.ts +25 -25
- package/dist/models/TaskExecutionDto.js +59 -61
- package/dist/models/TaskExecutionDto.js.map +1 -1
- package/dist/models/UpdateJobDto.d.ts +28 -25
- package/dist/models/UpdateJobDto.js +83 -65
- package/dist/models/UpdateJobDto.js.map +1 -1
- package/dist/models/UpdateTaskDto.d.ts +21 -11
- package/dist/models/UpdateTaskDto.js +47 -45
- package/dist/models/UpdateTaskDto.js.map +1 -1
- package/dist/models/UpdateVariableDto.d.ts +22 -17
- package/dist/models/UpdateVariableDto.js +47 -49
- package/dist/models/UpdateVariableDto.js.map +1 -1
- package/dist/models/VariableDto.d.ts +26 -24
- package/dist/models/VariableDto.js +65 -61
- package/dist/models/VariableDto.js.map +1 -1
- package/dist/models/all.d.ts +25 -0
- package/dist/models/all.js +42 -0
- package/dist/models/all.js.map +1 -0
- package/dist/rxjsStub.d.ts +10 -0
- package/dist/rxjsStub.js +33 -0
- package/dist/rxjsStub.js.map +1 -0
- package/dist/servers.d.ts +17 -0
- package/dist/servers.js +32 -0
- package/dist/servers.js.map +1 -0
- package/dist/types/ObjectParamAPI.d.ts +160 -0
- package/dist/types/ObjectParamAPI.js +129 -0
- package/dist/types/ObjectParamAPI.js.map +1 -0
- package/dist/types/ObservableAPI.d.ts +89 -0
- package/dist/types/ObservableAPI.js +642 -0
- package/dist/types/ObservableAPI.js.map +1 -0
- package/dist/types/PromiseAPI.d.ts +76 -0
- package/dist/types/PromiseAPI.js +148 -0
- package/dist/types/PromiseAPI.js.map +1 -0
- package/dist/util.d.ts +2 -0
- package/dist/util.js +29 -0
- package/dist/util.js.map +1 -0
- package/git_push.sh +51 -0
- package/http/http.ts +229 -0
- package/http/isomorphic-fetch.ts +32 -0
- package/index.ts +12 -5
- package/middleware.ts +66 -0
- package/models/CreateJobDto.ts +88 -144
- package/models/CreateJobExecutionDto.ts +29 -63
- package/models/CreateTaskDto.ts +43 -82
- package/models/CreateVariableDto.ts +46 -92
- package/models/FileDto.ts +53 -101
- package/models/FindVariablesRequest.ts +50 -55
- package/models/GetFiles200Response.ts +37 -82
- package/models/GetJobExecutionById400Response.ts +15 -45
- package/models/GetJobExecutions200Response.ts +37 -82
- package/models/GetJobs200Response.ts +37 -82
- package/models/GetTasks200Response.ts +37 -82
- package/models/GetVariables200Response.ts +37 -82
- package/models/HighOrderQuery.ts +30 -75
- package/models/JobDto.ts +117 -188
- package/models/JobExecutionDto.ts +95 -154
- package/models/LowOrderQuery.ts +44 -99
- package/models/LowOrderQueryValue.ts +29 -0
- package/models/ObjectSerializer.ts +324 -0
- package/models/PatchTaskExecutionDto.ts +36 -78
- package/models/Query.ts +18 -65
- package/models/TaskDto.ts +74 -128
- package/models/TaskExecutionDto.ts +68 -131
- package/models/UpdateJobDto.ts +95 -153
- package/models/UpdateTaskDto.ts +50 -91
- package/models/UpdateVariableDto.ts +53 -101
- package/models/VariableDto.ts +75 -136
- package/models/all.ts +25 -0
- package/package.json +35 -10
- package/rxjsStub.ts +27 -0
- package/servers.ts +55 -0
- package/types/ObjectParamAPI.ts +580 -0
- package/types/ObservableAPI.ts +701 -0
- package/types/PromiseAPI.ts +370 -0
- package/util.ts +37 -0
- package/apis/index.ts +0 -8
- package/dist/apis/index.d.ts +0 -6
- package/dist/apis/index.js +0 -23
- package/dist/apis/index.js.map +0 -1
- package/dist/models/FileControllerGetFiles200Response.d.ts +0 -14
- package/dist/models/FileControllerGetFiles200Response.js +0 -43
- package/dist/models/FileControllerGetFiles200Response.js.map +0 -1
- package/dist/models/JobControllerList200Response.d.ts +0 -14
- package/dist/models/JobControllerList200Response.js +0 -43
- package/dist/models/JobControllerList200Response.js.map +0 -1
- package/dist/models/JobDtoPeriodicityInner.d.ts +0 -8
- package/dist/models/JobDtoPeriodicityInner.js +0 -37
- package/dist/models/JobDtoPeriodicityInner.js.map +0 -1
- package/dist/models/JobDtoTasksInner.d.ts +0 -14
- package/dist/models/JobDtoTasksInner.js +0 -45
- package/dist/models/JobDtoTasksInner.js.map +0 -1
- package/dist/models/JobDtoTitleLocal.d.ts +0 -8
- package/dist/models/JobDtoTitleLocal.js +0 -37
- package/dist/models/JobDtoTitleLocal.js.map +0 -1
- package/dist/models/JobExecutionControllerGetOne400Response.d.ts +0 -7
- package/dist/models/JobExecutionControllerGetOne400Response.js +0 -35
- package/dist/models/JobExecutionControllerGetOne400Response.js.map +0 -1
- package/dist/models/JobExecutionControllerList200Response.d.ts +0 -14
- package/dist/models/JobExecutionControllerList200Response.js +0 -43
- package/dist/models/JobExecutionControllerList200Response.js.map +0 -1
- package/dist/models/JobExecutionDtoInfo.d.ts +0 -7
- package/dist/models/JobExecutionDtoInfo.js +0 -35
- package/dist/models/JobExecutionDtoInfo.js.map +0 -1
- package/dist/models/TaskControllerList200Response.d.ts +0 -14
- package/dist/models/TaskControllerList200Response.js +0 -43
- package/dist/models/TaskControllerList200Response.js.map +0 -1
- package/dist/models/TaskDtoInputKeysInner.d.ts +0 -8
- package/dist/models/TaskDtoInputKeysInner.js +0 -37
- package/dist/models/TaskDtoInputKeysInner.js.map +0 -1
- package/dist/models/VariableControllerList200Response.d.ts +0 -14
- package/dist/models/VariableControllerList200Response.js +0 -43
- package/dist/models/VariableControllerList200Response.js.map +0 -1
- package/dist/models/index.d.ts +0 -24
- package/dist/models/index.js +0 -41
- package/dist/models/index.js.map +0 -1
- package/dist/runtime.d.ts +0 -154
- package/dist/runtime.js +0 -306
- package/dist/runtime.js.map +0 -1
- package/models/ExecuteJob400Response.ts +0 -65
- package/models/ExecuteJobDto.ts +0 -97
- package/models/ExecuteJobDtoInfo.ts +0 -65
- package/models/ExecuteJobDtoJob.ts +0 -81
- package/models/FileControllerGetFiles200Response.ts +0 -98
- package/models/FileCreatedDto.ts +0 -111
- package/models/JobControllerList200Response.ts +0 -98
- package/models/JobDtoPeriodicitiesInner.ts +0 -73
- package/models/JobDtoPeriodicityInner.ts +0 -73
- package/models/JobDtoProject.ts +0 -73
- package/models/JobDtoTasksInner.ts +0 -105
- package/models/JobDtoTitleLocal.ts +0 -73
- package/models/JobExecutionControllerGetOne400Response.ts +0 -65
- package/models/JobExecutionControllerList200Response.ts +0 -98
- package/models/JobExecutionDtoEventsInner.ts +0 -89
- package/models/JobExecutionDtoInfo.ts +0 -65
- package/models/JobExecutionDtoJob.ts +0 -81
- package/models/TaskControllerList200Response.ts +0 -98
- package/models/TaskDtoInputKeysInner.ts +0 -73
- package/models/TaskInstanceDto.ts +0 -143
- package/models/TaskInstanceUpdateDto.ts +0 -107
- package/models/VariableControllerList200Response.ts +0 -98
- package/models/index.ts +0 -26
- package/runtime.ts +0 -425
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
# .DataFactoryFileApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**getFileById**](DataFactoryFileApi.md#getFileById) | **GET** /v1/data_factory/files/{id} | (Experimental) - Get a Data Factory File by id
|
|
8
|
+
[**getFiles**](DataFactoryFileApi.md#getFiles) | **GET** /v1/data_factory/files | (Experimental) - Get a list of Data Factory File
|
|
9
|
+
[**uploadFile**](DataFactoryFileApi.md#uploadFile) | **POST** /v1/data_factory/files | Post a file so it can be consume by a Data Factory job
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# **getFileById**
|
|
13
|
+
> FileDto getFileById()
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Example
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { } from '';
|
|
21
|
+
import * as fs from 'fs';
|
|
22
|
+
|
|
23
|
+
const configuration = .createConfiguration();
|
|
24
|
+
const apiInstance = new .DataFactoryFileApi(configuration);
|
|
25
|
+
|
|
26
|
+
let body:.DataFactoryFileApiGetFileByIdRequest = {
|
|
27
|
+
// string
|
|
28
|
+
id: "id_example",
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
apiInstance.getFileById(body).then((data:any) => {
|
|
32
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
33
|
+
}).catch((error:any) => console.error(error));
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Parameters
|
|
38
|
+
|
|
39
|
+
Name | Type | Description | Notes
|
|
40
|
+
------------- | ------------- | ------------- | -------------
|
|
41
|
+
**id** | [**string**] | | defaults to undefined
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Return type
|
|
45
|
+
|
|
46
|
+
**FileDto**
|
|
47
|
+
|
|
48
|
+
### Authorization
|
|
49
|
+
|
|
50
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
51
|
+
|
|
52
|
+
### HTTP request headers
|
|
53
|
+
|
|
54
|
+
- **Content-Type**: Not defined
|
|
55
|
+
- **Accept**: application/json
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### HTTP response details
|
|
59
|
+
| Status code | Description | Response headers |
|
|
60
|
+
|-------------|-------------|------------------|
|
|
61
|
+
**200** | Data Factory File with request id successfully retrieved | - |
|
|
62
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
63
|
+
**401** | Unauthorized | - |
|
|
64
|
+
**404** | Not found | - |
|
|
65
|
+
|
|
66
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
67
|
+
|
|
68
|
+
# **getFiles**
|
|
69
|
+
> GetFiles200Response getFiles()
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Example
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
```typescript
|
|
76
|
+
import { } from '';
|
|
77
|
+
import * as fs from 'fs';
|
|
78
|
+
|
|
79
|
+
const configuration = .createConfiguration();
|
|
80
|
+
const apiInstance = new .DataFactoryFileApi(configuration);
|
|
81
|
+
|
|
82
|
+
let body:.DataFactoryFileApiGetFilesRequest = {
|
|
83
|
+
// number (optional)
|
|
84
|
+
size: 10,
|
|
85
|
+
// number (optional)
|
|
86
|
+
page: 0,
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
apiInstance.getFiles(body).then((data:any) => {
|
|
90
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
91
|
+
}).catch((error:any) => console.error(error));
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Parameters
|
|
96
|
+
|
|
97
|
+
Name | Type | Description | Notes
|
|
98
|
+
------------- | ------------- | ------------- | -------------
|
|
99
|
+
**size** | [**number**] | | (optional) defaults to 10
|
|
100
|
+
**page** | [**number**] | | (optional) defaults to 0
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Return type
|
|
104
|
+
|
|
105
|
+
**GetFiles200Response**
|
|
106
|
+
|
|
107
|
+
### Authorization
|
|
108
|
+
|
|
109
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
110
|
+
|
|
111
|
+
### HTTP request headers
|
|
112
|
+
|
|
113
|
+
- **Content-Type**: Not defined
|
|
114
|
+
- **Accept**: application/json
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### HTTP response details
|
|
118
|
+
| Status code | Description | Response headers |
|
|
119
|
+
|-------------|-------------|------------------|
|
|
120
|
+
**200** | Get a list of Data Factory File | - |
|
|
121
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
122
|
+
**401** | Unauthorized | - |
|
|
123
|
+
|
|
124
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
125
|
+
|
|
126
|
+
# **uploadFile**
|
|
127
|
+
> FileDto uploadFile()
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Example
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
```typescript
|
|
134
|
+
import { } from '';
|
|
135
|
+
import * as fs from 'fs';
|
|
136
|
+
|
|
137
|
+
const configuration = .createConfiguration();
|
|
138
|
+
const apiInstance = new .DataFactoryFileApi(configuration);
|
|
139
|
+
|
|
140
|
+
let body:.DataFactoryFileApiUploadFileRequest = {
|
|
141
|
+
// HttpFile
|
|
142
|
+
file: { data: Buffer.from(fs.readFileSync('/path/to/file', 'utf-8')), name: '/path/to/file' },
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
apiInstance.uploadFile(body).then((data:any) => {
|
|
146
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
147
|
+
}).catch((error:any) => console.error(error));
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Parameters
|
|
152
|
+
|
|
153
|
+
Name | Type | Description | Notes
|
|
154
|
+
------------- | ------------- | ------------- | -------------
|
|
155
|
+
**file** | [**HttpFile**] | | defaults to undefined
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
### Return type
|
|
159
|
+
|
|
160
|
+
**FileDto**
|
|
161
|
+
|
|
162
|
+
### Authorization
|
|
163
|
+
|
|
164
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
165
|
+
|
|
166
|
+
### HTTP request headers
|
|
167
|
+
|
|
168
|
+
- **Content-Type**: multipart/form-data
|
|
169
|
+
- **Accept**: application/json
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
### HTTP response details
|
|
173
|
+
| Status code | Description | Response headers |
|
|
174
|
+
|-------------|-------------|------------------|
|
|
175
|
+
**201** | File successfully created | - |
|
|
176
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
177
|
+
**401** | Unauthorized | - |
|
|
178
|
+
**413** | Request Entity Too Large | - |
|
|
179
|
+
|
|
180
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
181
|
+
|
|
182
|
+
|
package/JobApi.md
ADDED
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
# .JobApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**createJob**](JobApi.md#createJob) | **POST** /v1/data_factory/jobs | (Experimental) - Create a Job
|
|
8
|
+
[**getJobById**](JobApi.md#getJobById) | **GET** /v1/data_factory/jobs/{id} | (Experimental) - Get a Job by id
|
|
9
|
+
[**getJobs**](JobApi.md#getJobs) | **GET** /v1/data_factory/jobs | (Experimental) - Get a list of Job
|
|
10
|
+
[**updateJob**](JobApi.md#updateJob) | **PUT** /v1/data_factory/jobs/{id} | (Experimental) - Update a Job
|
|
11
|
+
[**updateJobZip**](JobApi.md#updateJobZip) | **PUT** /v1/data_factory/jobs/{id}/zip | (Experimental) - Upload a zip to update a job
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# **createJob**
|
|
15
|
+
> JobDto createJob(createJobDto)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Example
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import { } from '';
|
|
23
|
+
import * as fs from 'fs';
|
|
24
|
+
|
|
25
|
+
const configuration = .createConfiguration();
|
|
26
|
+
const apiInstance = new .JobApi(configuration);
|
|
27
|
+
|
|
28
|
+
let body:.JobApiCreateJobRequest = {
|
|
29
|
+
// CreateJobDto
|
|
30
|
+
createJobDto: {
|
|
31
|
+
key: "key_example",
|
|
32
|
+
periodicity: [
|
|
33
|
+
{},
|
|
34
|
+
],
|
|
35
|
+
pipelineId: "pipelineId_example",
|
|
36
|
+
projectId: "projectId_example",
|
|
37
|
+
status: "DRAFT",
|
|
38
|
+
title: "title_example",
|
|
39
|
+
titleLocal: {},
|
|
40
|
+
description: "description_example",
|
|
41
|
+
descriptionLocal: {},
|
|
42
|
+
output: {},
|
|
43
|
+
tasks: [
|
|
44
|
+
{},
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
apiInstance.createJob(body).then((data:any) => {
|
|
50
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
51
|
+
}).catch((error:any) => console.error(error));
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Parameters
|
|
56
|
+
|
|
57
|
+
Name | Type | Description | Notes
|
|
58
|
+
------------- | ------------- | ------------- | -------------
|
|
59
|
+
**createJobDto** | **CreateJobDto**| |
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Return type
|
|
63
|
+
|
|
64
|
+
**JobDto**
|
|
65
|
+
|
|
66
|
+
### Authorization
|
|
67
|
+
|
|
68
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
69
|
+
|
|
70
|
+
### HTTP request headers
|
|
71
|
+
|
|
72
|
+
- **Content-Type**: application/json
|
|
73
|
+
- **Accept**: application/json
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### HTTP response details
|
|
77
|
+
| Status code | Description | Response headers |
|
|
78
|
+
|-------------|-------------|------------------|
|
|
79
|
+
**201** | Job successfully created | - |
|
|
80
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
81
|
+
**401** | Unauthorized | - |
|
|
82
|
+
|
|
83
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
84
|
+
|
|
85
|
+
# **getJobById**
|
|
86
|
+
> JobDto getJobById()
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Example
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
```typescript
|
|
93
|
+
import { } from '';
|
|
94
|
+
import * as fs from 'fs';
|
|
95
|
+
|
|
96
|
+
const configuration = .createConfiguration();
|
|
97
|
+
const apiInstance = new .JobApi(configuration);
|
|
98
|
+
|
|
99
|
+
let body:.JobApiGetJobByIdRequest = {
|
|
100
|
+
// string
|
|
101
|
+
id: "id_example",
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
apiInstance.getJobById(body).then((data:any) => {
|
|
105
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
106
|
+
}).catch((error:any) => console.error(error));
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Parameters
|
|
111
|
+
|
|
112
|
+
Name | Type | Description | Notes
|
|
113
|
+
------------- | ------------- | ------------- | -------------
|
|
114
|
+
**id** | [**string**] | | defaults to undefined
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### Return type
|
|
118
|
+
|
|
119
|
+
**JobDto**
|
|
120
|
+
|
|
121
|
+
### Authorization
|
|
122
|
+
|
|
123
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
124
|
+
|
|
125
|
+
### HTTP request headers
|
|
126
|
+
|
|
127
|
+
- **Content-Type**: Not defined
|
|
128
|
+
- **Accept**: application/json
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### HTTP response details
|
|
132
|
+
| Status code | Description | Response headers |
|
|
133
|
+
|-------------|-------------|------------------|
|
|
134
|
+
**200** | Job with request id successfully retrieved | - |
|
|
135
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
136
|
+
**401** | Unauthorized | - |
|
|
137
|
+
**404** | Not found | - |
|
|
138
|
+
|
|
139
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
140
|
+
|
|
141
|
+
# **getJobs**
|
|
142
|
+
> GetJobs200Response getJobs()
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### Example
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
```typescript
|
|
149
|
+
import { } from '';
|
|
150
|
+
import * as fs from 'fs';
|
|
151
|
+
|
|
152
|
+
const configuration = .createConfiguration();
|
|
153
|
+
const apiInstance = new .JobApi(configuration);
|
|
154
|
+
|
|
155
|
+
let body:.JobApiGetJobsRequest = {
|
|
156
|
+
// number (optional)
|
|
157
|
+
size: 10,
|
|
158
|
+
// number (optional)
|
|
159
|
+
page: 0,
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
apiInstance.getJobs(body).then((data:any) => {
|
|
163
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
164
|
+
}).catch((error:any) => console.error(error));
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Parameters
|
|
169
|
+
|
|
170
|
+
Name | Type | Description | Notes
|
|
171
|
+
------------- | ------------- | ------------- | -------------
|
|
172
|
+
**size** | [**number**] | | (optional) defaults to 10
|
|
173
|
+
**page** | [**number**] | | (optional) defaults to 0
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Return type
|
|
177
|
+
|
|
178
|
+
**GetJobs200Response**
|
|
179
|
+
|
|
180
|
+
### Authorization
|
|
181
|
+
|
|
182
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
183
|
+
|
|
184
|
+
### HTTP request headers
|
|
185
|
+
|
|
186
|
+
- **Content-Type**: Not defined
|
|
187
|
+
- **Accept**: application/json
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### HTTP response details
|
|
191
|
+
| Status code | Description | Response headers |
|
|
192
|
+
|-------------|-------------|------------------|
|
|
193
|
+
**200** | Get a list of Job | - |
|
|
194
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
195
|
+
**401** | Unauthorized | - |
|
|
196
|
+
|
|
197
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
198
|
+
|
|
199
|
+
# **updateJob**
|
|
200
|
+
> JobDto updateJob(updateJobDto)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Example
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
```typescript
|
|
207
|
+
import { } from '';
|
|
208
|
+
import * as fs from 'fs';
|
|
209
|
+
|
|
210
|
+
const configuration = .createConfiguration();
|
|
211
|
+
const apiInstance = new .JobApi(configuration);
|
|
212
|
+
|
|
213
|
+
let body:.JobApiUpdateJobRequest = {
|
|
214
|
+
// string
|
|
215
|
+
id: "id_example",
|
|
216
|
+
// UpdateJobDto
|
|
217
|
+
updateJobDto: {
|
|
218
|
+
key: "key_example",
|
|
219
|
+
periodicity: [
|
|
220
|
+
{},
|
|
221
|
+
],
|
|
222
|
+
pipelineId: "pipelineId_example",
|
|
223
|
+
projectId: "projectId_example",
|
|
224
|
+
status: "DRAFT",
|
|
225
|
+
title: "title_example",
|
|
226
|
+
titleLocal: {},
|
|
227
|
+
description: "description_example",
|
|
228
|
+
descriptionLocal: {},
|
|
229
|
+
output: {},
|
|
230
|
+
tasks: [
|
|
231
|
+
{},
|
|
232
|
+
],
|
|
233
|
+
id: "id_example",
|
|
234
|
+
},
|
|
235
|
+
};
|
|
236
|
+
|
|
237
|
+
apiInstance.updateJob(body).then((data:any) => {
|
|
238
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
239
|
+
}).catch((error:any) => console.error(error));
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Parameters
|
|
244
|
+
|
|
245
|
+
Name | Type | Description | Notes
|
|
246
|
+
------------- | ------------- | ------------- | -------------
|
|
247
|
+
**updateJobDto** | **UpdateJobDto**| |
|
|
248
|
+
**id** | [**string**] | | defaults to undefined
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
### Return type
|
|
252
|
+
|
|
253
|
+
**JobDto**
|
|
254
|
+
|
|
255
|
+
### Authorization
|
|
256
|
+
|
|
257
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
258
|
+
|
|
259
|
+
### HTTP request headers
|
|
260
|
+
|
|
261
|
+
- **Content-Type**: application/json
|
|
262
|
+
- **Accept**: application/json
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### HTTP response details
|
|
266
|
+
| Status code | Description | Response headers |
|
|
267
|
+
|-------------|-------------|------------------|
|
|
268
|
+
**201** | Job successfully updated | - |
|
|
269
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
270
|
+
**401** | Unauthorized | - |
|
|
271
|
+
|
|
272
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
273
|
+
|
|
274
|
+
# **updateJobZip**
|
|
275
|
+
> JobDto updateJobZip()
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
### Example
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
```typescript
|
|
282
|
+
import { } from '';
|
|
283
|
+
import * as fs from 'fs';
|
|
284
|
+
|
|
285
|
+
const configuration = .createConfiguration();
|
|
286
|
+
const apiInstance = new .JobApi(configuration);
|
|
287
|
+
|
|
288
|
+
let body:.JobApiUpdateJobZipRequest = {
|
|
289
|
+
// string
|
|
290
|
+
id: "id_example",
|
|
291
|
+
// HttpFile
|
|
292
|
+
file: { data: Buffer.from(fs.readFileSync('/path/to/file', 'utf-8')), name: '/path/to/file' },
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
apiInstance.updateJobZip(body).then((data:any) => {
|
|
296
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
297
|
+
}).catch((error:any) => console.error(error));
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
### Parameters
|
|
302
|
+
|
|
303
|
+
Name | Type | Description | Notes
|
|
304
|
+
------------- | ------------- | ------------- | -------------
|
|
305
|
+
**id** | [**string**] | | defaults to undefined
|
|
306
|
+
**file** | [**HttpFile**] | | defaults to undefined
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
### Return type
|
|
310
|
+
|
|
311
|
+
**JobDto**
|
|
312
|
+
|
|
313
|
+
### Authorization
|
|
314
|
+
|
|
315
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
316
|
+
|
|
317
|
+
### HTTP request headers
|
|
318
|
+
|
|
319
|
+
- **Content-Type**: multipart/form-data
|
|
320
|
+
- **Accept**: application/json
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### HTTP response details
|
|
324
|
+
| Status code | Description | Response headers |
|
|
325
|
+
|-------------|-------------|------------------|
|
|
326
|
+
**201** | Zip successfully updated job | - |
|
|
327
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
328
|
+
**401** | Unauthorized | - |
|
|
329
|
+
**413** | Request Entity Too Large | - |
|
|
330
|
+
|
|
331
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
332
|
+
|
|
333
|
+
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
# .JobExecutionApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**createJobExecution**](JobExecutionApi.md#createJobExecution) | **POST** /v1/data_factory/job_executions | (Experimental) - Create a Job execution
|
|
8
|
+
[**getJobExecutionById**](JobExecutionApi.md#getJobExecutionById) | **GET** /v1/data_factory/job_executions/{id} | (Experimental) - Get a Job execution by id
|
|
9
|
+
[**getJobExecutions**](JobExecutionApi.md#getJobExecutions) | **GET** /v1/data_factory/job_executions | (Experimental) - Get a list of Job execution
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# **createJobExecution**
|
|
13
|
+
> JobExecutionDto createJobExecution(createJobExecutionDto)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Example
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { } from '';
|
|
21
|
+
import * as fs from 'fs';
|
|
22
|
+
|
|
23
|
+
const configuration = .createConfiguration();
|
|
24
|
+
const apiInstance = new .JobExecutionApi(configuration);
|
|
25
|
+
|
|
26
|
+
let body:.JobExecutionApiCreateJobExecutionRequest = {
|
|
27
|
+
// CreateJobExecutionDto
|
|
28
|
+
createJobExecutionDto: {
|
|
29
|
+
jobId: "jobId_example",
|
|
30
|
+
info: {},
|
|
31
|
+
input: {},
|
|
32
|
+
},
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
apiInstance.createJobExecution(body).then((data:any) => {
|
|
36
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
37
|
+
}).catch((error:any) => console.error(error));
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Parameters
|
|
42
|
+
|
|
43
|
+
Name | Type | Description | Notes
|
|
44
|
+
------------- | ------------- | ------------- | -------------
|
|
45
|
+
**createJobExecutionDto** | **CreateJobExecutionDto**| |
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Return type
|
|
49
|
+
|
|
50
|
+
**JobExecutionDto**
|
|
51
|
+
|
|
52
|
+
### Authorization
|
|
53
|
+
|
|
54
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
55
|
+
|
|
56
|
+
### HTTP request headers
|
|
57
|
+
|
|
58
|
+
- **Content-Type**: application/json
|
|
59
|
+
- **Accept**: application/json
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### HTTP response details
|
|
63
|
+
| Status code | Description | Response headers |
|
|
64
|
+
|-------------|-------------|------------------|
|
|
65
|
+
**201** | Job execution successfully created | - |
|
|
66
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
67
|
+
**401** | Unauthorized | - |
|
|
68
|
+
|
|
69
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
70
|
+
|
|
71
|
+
# **getJobExecutionById**
|
|
72
|
+
> JobExecutionDto getJobExecutionById()
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Example
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
```typescript
|
|
79
|
+
import { } from '';
|
|
80
|
+
import * as fs from 'fs';
|
|
81
|
+
|
|
82
|
+
const configuration = .createConfiguration();
|
|
83
|
+
const apiInstance = new .JobExecutionApi(configuration);
|
|
84
|
+
|
|
85
|
+
let body:.JobExecutionApiGetJobExecutionByIdRequest = {
|
|
86
|
+
// string
|
|
87
|
+
id: "id_example",
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
apiInstance.getJobExecutionById(body).then((data:any) => {
|
|
91
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
92
|
+
}).catch((error:any) => console.error(error));
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Parameters
|
|
97
|
+
|
|
98
|
+
Name | Type | Description | Notes
|
|
99
|
+
------------- | ------------- | ------------- | -------------
|
|
100
|
+
**id** | [**string**] | | defaults to undefined
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Return type
|
|
104
|
+
|
|
105
|
+
**JobExecutionDto**
|
|
106
|
+
|
|
107
|
+
### Authorization
|
|
108
|
+
|
|
109
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
110
|
+
|
|
111
|
+
### HTTP request headers
|
|
112
|
+
|
|
113
|
+
- **Content-Type**: Not defined
|
|
114
|
+
- **Accept**: application/json
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### HTTP response details
|
|
118
|
+
| Status code | Description | Response headers |
|
|
119
|
+
|-------------|-------------|------------------|
|
|
120
|
+
**200** | Job execution with request id successfully retrieved | - |
|
|
121
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
122
|
+
**401** | Unauthorized | - |
|
|
123
|
+
**404** | Not found | - |
|
|
124
|
+
|
|
125
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
126
|
+
|
|
127
|
+
# **getJobExecutions**
|
|
128
|
+
> GetJobExecutions200Response getJobExecutions()
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### Example
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
```typescript
|
|
135
|
+
import { } from '';
|
|
136
|
+
import * as fs from 'fs';
|
|
137
|
+
|
|
138
|
+
const configuration = .createConfiguration();
|
|
139
|
+
const apiInstance = new .JobExecutionApi(configuration);
|
|
140
|
+
|
|
141
|
+
let body:.JobExecutionApiGetJobExecutionsRequest = {
|
|
142
|
+
// number (optional)
|
|
143
|
+
size: 10,
|
|
144
|
+
// number (optional)
|
|
145
|
+
page: 0,
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
apiInstance.getJobExecutions(body).then((data:any) => {
|
|
149
|
+
console.log('API called successfully. Returned data: ' + data);
|
|
150
|
+
}).catch((error:any) => console.error(error));
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Parameters
|
|
155
|
+
|
|
156
|
+
Name | Type | Description | Notes
|
|
157
|
+
------------- | ------------- | ------------- | -------------
|
|
158
|
+
**size** | [**number**] | | (optional) defaults to 10
|
|
159
|
+
**page** | [**number**] | | (optional) defaults to 0
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Return type
|
|
163
|
+
|
|
164
|
+
**GetJobExecutions200Response**
|
|
165
|
+
|
|
166
|
+
### Authorization
|
|
167
|
+
|
|
168
|
+
[ApiKeyAuthQuery](README.md#ApiKeyAuthQuery), [ApiKeyAuthHeader](README.md#ApiKeyAuthHeader)
|
|
169
|
+
|
|
170
|
+
### HTTP request headers
|
|
171
|
+
|
|
172
|
+
- **Content-Type**: Not defined
|
|
173
|
+
- **Accept**: application/json
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### HTTP response details
|
|
177
|
+
| Status code | Description | Response headers |
|
|
178
|
+
|-------------|-------------|------------------|
|
|
179
|
+
**200** | Get a list of Job execution | - |
|
|
180
|
+
**400** | Bad Request - Malformed syntax | - |
|
|
181
|
+
**401** | Unauthorized | - |
|
|
182
|
+
|
|
183
|
+
[[Back to top]](#) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to Model list]](README.md#documentation-for-models) [[Back to README]](README.md)
|
|
184
|
+
|
|
185
|
+
|