This endpoint allows you to fetch all versions of a given processor, including the current draft version.

  • Versions are typically returned in descending order of creation (newest first), but this should be confirmed in the actual implementation.
  • The draft version is the latest unpublished version of the processor, which can be published to create a new version. It might not have any changes from the last published version.

Path Parameters

id
string
required

The ID of the processor to retrieve versions for.

Response

success
boolean

A true or false value indicating whether the request was successful or not.

versions
array

An array of ProcessorVersion objects representing all versions of the specified processor. See the ProcessorVersion object for more details on the structure of each version.

Error Responses

success
boolean

Will be false if the request failed.

error
string

A description of the error that occurred.

Possible Errors

  • 404 Not Found: If the specified processor does not exist.