/produce
POST /eas/produce
POST /eas/produceAccess token in the Authorization header:
Authorization: Bearer <token>.
The _uuid of the object the file is linked into. This is used for the permission check.
The file "original" the new produced version should be created from.
The target format of the produced file. Defaults to the extension of the file parent.
The newly created file will be returned.
The file rendering in long format.
The produce request could not be processed — typical reasons are
EasNoParentID (no / zero eas_parent_id), ProduceOriginalOnly
(the parent is not an original), ProduceExtensionNotSupported
and ProduceFormatNotSupported. ReadOnlyMode is returned if
the instance is read-only. An eas_parent_id that does not
match any stored file surfaces as a generic 400 error
(ServerGeneric), not a 404.
The caller may not produce a version of the parent: it is
neither the parent's uploader nor a user with RIGHT_WRITE +
RIGHT_ASSET_UPLOAD on a linked object. The code is
InsufficientRights (the caller cannot even see the parent) or
RightRequired (visible but not producible). This endpoint
returns no 401; a missing or invalid token is treated as an
anonymous request and rejected with 403.
Last updated