You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -281,8 +299,9 @@ Einen Kommentar aus einem Jira-Issue löschen
281
299
282
300
| Parameter | Typ | Beschreibung |
283
301
| --------- | ---- | ----------- |
284
-
|`success`| boolean | Erfolgsstatus der Operation |
285
-
|`output`| object | Löschdetails mit Zeitstempel, Issue-Key, Kommentar-ID und Erfolgsstatus |
302
+
|`ts`| string | Zeitstempel der Operation |
303
+
|`issueKey`| string | Issue-Key |
304
+
|`commentId`| string | ID des gelöschten Kommentars |
286
305
287
306
### `jira_get_attachments`
288
307
@@ -300,8 +319,9 @@ Alle Anhänge eines Jira-Issues abrufen
300
319
301
320
| Parameter | Typ | Beschreibung |
302
321
| --------- | ---- | ----------- |
303
-
|`success`| boolean | Erfolgsstatus der Operation |
304
-
|`output`| object | Anhangsdaten mit Zeitstempel, Issue-Key und Array von Anhängen |
322
+
|`ts`| string | Zeitstempel der Operation |
323
+
|`issueKey`| string | Issue-Key |
324
+
|`attachments`| array | Array von Anhängen mit ID, Dateiname, Größe, MIME-Typ, Erstellungsdatum und Autor |
305
325
306
326
### `jira_delete_attachment`
307
327
@@ -319,8 +339,8 @@ Einen Anhang von einem Jira-Issue löschen
319
339
320
340
| Parameter | Typ | Beschreibung |
321
341
| --------- | ---- | ----------- |
322
-
|`success`|boolean|Erfolgsstatus der Operation |
323
-
|`output`|object|Löschdetails mit Zeitstempel, Anhangs-ID und Erfolgsstatus|
342
+
|`ts`|string|Zeitstempel der Operation |
343
+
|`attachmentId`|string|ID des gelöschten Anhangs |
324
344
325
345
### `jira_add_worklog`
326
346
@@ -341,8 +361,10 @@ Einen Zeiterfassungseintrag zu einem Jira-Issue hinzufügen
341
361
342
362
| Parameter | Typ | Beschreibung |
343
363
| --------- | ---- | ----------- |
344
-
|`success`| boolean | Erfolgsstatus der Operation |
345
-
|`output`| object | Worklog-Details mit Zeitstempel, Issue-Key, Worklog-ID, aufgewendeter Zeit in Sekunden und Erfolgsstatus |
364
+
|`ts`| string | Zeitstempel der Operation |
365
+
|`issueKey`| string | Issue-Key, zu dem der Worklog hinzugefügt wurde |
366
+
|`worklogId`| string | ID des erstellten Worklogs |
367
+
|`timeSpentSeconds`| number | Aufgewendete Zeit in Sekunden |
346
368
347
369
### `jira_get_worklogs`
348
370
@@ -362,8 +384,10 @@ Alle Worklog-Einträge eines Jira-Issues abrufen
362
384
363
385
| Parameter | Typ | Beschreibung |
364
386
| --------- | ---- | ----------- |
365
-
|`success`| boolean | Erfolgsstatus der Operation |
366
-
|`output`| object | Worklog-Daten mit Zeitstempel, Issue-Key, Gesamtanzahl und Array von Worklogs |
387
+
|`ts`| string | Zeitstempel der Operation |
388
+
|`issueKey`| string | Issue-Key |
389
+
|`total`| number | Gesamtanzahl der Worklogs |
390
+
|`worklogs`| array | Array von Worklogs mit ID, Autor, aufgewendeter Zeit in Sekunden, aufgewendeter Zeit, Kommentar, Erstellungs-, Aktualisierungs- und Startdatum |
367
391
368
392
### `jira_update_worklog`
369
393
@@ -385,8 +409,9 @@ Aktualisieren eines vorhandenen Worklog-Eintrags in einem Jira-Issue
385
409
386
410
| Parameter | Typ | Beschreibung |
387
411
| --------- | ---- | ----------- |
388
-
|`success`| boolean | Erfolgsstatus der Operation |
389
-
|`output`| object | Worklog-Aktualisierungsdetails mit Zeitstempel, Issue-Key, Worklog-ID und Erfolgsstatus |
412
+
|`ts`| string | Zeitstempel der Operation |
413
+
|`issueKey`| string | Issue-Key |
414
+
|`worklogId`| string | ID des aktualisierten Worklogs |
390
415
391
416
### `jira_delete_worklog`
392
417
@@ -405,8 +430,9 @@ Löschen eines Worklog-Eintrags aus einem Jira-Issue
405
430
406
431
| Parameter | Typ | Beschreibung |
407
432
| --------- | ---- | ----------- |
408
-
|`success`| boolean | Erfolgsstatus der Operation |
409
-
|`output`| object | Löschdetails mit Zeitstempel, Issue-Key, Worklog-ID und Erfolgsstatus |
433
+
|`ts`| string | Zeitstempel der Operation |
434
+
|`issueKey`| string | Issue-Key |
435
+
|`worklogId`| string | ID des gelöschten Worklogs |
410
436
411
437
### `jira_create_issue_link`
412
438
@@ -427,8 +453,11 @@ Eine Verknüpfungsbeziehung zwischen zwei Jira-Issues erstellen
427
453
428
454
| Parameter | Typ | Beschreibung |
429
455
| --------- | ---- | ----------- |
430
-
|`success`| boolean | Erfolgsstatus der Operation |
431
-
|`output`| object | Issue-Verknüpfungsdetails mit Zeitstempel, eingehendem Issue-Key, ausgehendem Issue-Key, Verknüpfungstyp und Erfolgsstatus |
456
+
|`ts`| string | Zeitstempel der Operation |
457
+
|`inwardIssue`| string | Key des eingehenden Issues |
458
+
|`outwardIssue`| string | Key des ausgehenden Issues |
459
+
|`linkType`| string | Art der Issue-Verknüpfung |
460
+
|`linkId`| string | ID der erstellten Verknüpfung |
432
461
433
462
### `jira_delete_issue_link`
434
463
@@ -446,8 +475,8 @@ Eine Verknüpfung zwischen zwei Jira-Issues löschen
446
475
447
476
| Parameter | Typ | Beschreibung |
448
477
| --------- | ---- | ----------- |
449
-
|`success`|boolean|Erfolgsstatus der Operation |
450
-
|`output`|object|Löschdetails mit Zeitstempel, Link-ID und Erfolgsstatus|
478
+
|`ts`|string|Zeitstempel der Operation |
479
+
|`linkId`|string| ID der gelöschten Verknüpfung|
451
480
452
481
### `jira_add_watcher`
453
482
@@ -466,8 +495,9 @@ Einen Beobachter zu einem Jira-Issue hinzufügen, um Benachrichtigungen über Ak
466
495
467
496
| Parameter | Typ | Beschreibung |
468
497
| --------- | ---- | ----------- |
469
-
|`success`| boolean | Erfolgsstatus der Operation |
470
-
|`output`| object | Beobachterdetails mit Zeitstempel, Issue-Key, Beobachter-Account-ID und Erfolgsstatus |
498
+
|`ts`| string | Zeitstempel der Operation |
499
+
|`issueKey`| string | Issue-Key |
500
+
|`watcherAccountId`| string | Account-ID des hinzugefügten Beobachters |
471
501
472
502
### `jira_remove_watcher`
473
503
@@ -486,8 +516,9 @@ Einen Beobachter von einem Jira-Issue entfernen
486
516
487
517
| Parameter | Typ | Beschreibung |
488
518
| --------- | ---- | ----------- |
489
-
|`success`| boolean | Erfolgsstatus der Operation |
490
-
|`output`| object | Entfernungsdetails mit Zeitstempel, Issue-Key, Beobachter-Konto-ID und Erfolgsstatus |
519
+
|`ts`| string | Zeitstempel der Operation |
520
+
|`issueKey`| string | Issue-Key |
521
+
|`watcherAccountId`| string | Account-ID des entfernten Beobachters |
0 commit comments