Goobi workflow Digests
Documentation homeGoobi workflow HandbookGoobi workflow Plugins
English
English
  • Goobi workflow Digests
  • 2025
    • March
    • February
    • January
  • 2024
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
    • April
    • March
    • February
    • January
  • 2023
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
    • April
    • March
    • February
    • January
  • 2022
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
    • April
    • March
    • February
    • January
  • 2021
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
    • April
    • March
    • February
    • January
  • 2020
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
    • April
    • March
    • February
    • January
  • 2019
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
    • April
    • March
    • February
    • January
  • 2018
    • December
    • November
    • October
    • September
    • August
    • July
    • June
    • May
Powered by GitBook
On this page
Export as PDF
  1. 2023

September

Developments and news about Goobi workflow

PreviousOctoberNextAugust

Last updated 1 month ago

September 2023

September

Core

Usability

The Goobi workflow creation screen has always prevented a process with the same name from being created again. You would then receive a short error message saying that the process already exists. This has been enhanced so that you can now also view the details of the existing process.

GoobiScript

The GoobiScript calls metadataAdd and metadataReplace can now also create or manipulate authority data values. This makes it possible, for example, to subsequently adjust the GND ID for persons in bulk.

At the same time, the GoobiScript metadataReplaceAdvanced was introduced. This call also allows you to work with regular expressions.

REST

September also brought changes to the REST interface, two new endpoints were added. The first allows a search and returns a list of process IDs:

The second allows you to complete tasks with a defined title:

Plugins

Import: Excel to EAD

An import plugin has been developed to create an EAD archive structure with metadata from an Excel file.

There was no dedicated Goobi workflow release in September.

Error message when creating a new process
Details of the existing process in the creation screen
  • September 2023
  • September
  • Core
  • PUTRetrieve ids of processes satisfying the input condition.
  • PUTClose the first step matching the given name
  • Plugins

Retrieve ids of processes satisfying the input condition.

put

retrieve ids of processes satisfying the input condition

Authorizations
Body
filterstringOptional
conditionsstring[]Optional
Responses
200
OK
400
Bad request
403
Forbidden - some requirements are not fulfilled.
500
Internal error
put
PUT /goobi/api/process/query HTTP/1.1
Host: 
Content-Type: */*
Accept: */*
Content-Length: 39

{
  "filter": "text",
  "conditions": [
    "text"
  ]
}

No content

Close the first step matching the given name

put

Close the first step matching the given name

Authorizations
Path parameters
processidstringRequired
Body
stepnamestringOptional
Responses
200
OK
404
Process not found
500
Internal error
put
PUT /goobi/api/process/{processid}/step/close HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 19

{
  "stepname": "text"
}

No content