Blob
📄️ Upload blob data for a pre-created existing blob
Upload data for an existing blob previously created without inline data. Use if blob is too large to upload as Base64 in JSON
📄️ Download raw blob data (with content disposition)
Retrieve blob data as reponse with the blob's content type and with content disposition set to the blob's filename.
📄️ Download raw blob data (inline)
Retrieve blob data as reponse with the blob's content type
📄️ Download raw blob data by entity id
Download the raw blob data without the immutable blob id - url is not unique and reponse not cachable across organziations.
📄️ Find 'Blob' entities using the specified (body) parameters
Search for entities with the filters and arguments specified in 'DataReadParams' (see request schema), with optional mapping expansions via 'map'. Note that 'filter' should include a 'project_id' parameter if API key permissions are restricted to a single project.
📄️ Find a single 'Blob' entity with the given id
Fetch a single entity by id - If the entity does not exist, returns a 404 error.
📄️ Update one 'Blob' entity
Update a single existing 'Blob' entity. Returns a full updated entity including (optional) modification metadata.
📄️ Delete a 'Blob' by id
If the entity type supports soft-deletion this operation only soft-deletes the entity.
📄️ Find 'Blob' entities using the specified (query) parameters
Same as POST /find, but serializing the query in the 'q' parameter instead of the request body
📄️ Create a new 'Blob' entity
Creates a new 'Blob' entity. Returns full entity with new id and (optional) creation metadata.
📄️ Create multiple new 'Blob' entities
Creates multiple new 'Blob' entities. Returns a list of new ids only.
📄️ Update multiple 'Blob' existing entities
Updates multiple existing 'Blob' entities. Returns a full updated entity list including (optional) modification metadata.
📄️ Delete multiple 'Blob' entities by id
Returns the list of deleted ids. If the entity type supports soft-deletion this operation only soft-deletes the entities.
📄️ Undeletes multiple 'Blob' entities
Undeletes multiple existing 'Blob' entities (only if the entity type supports soft-deletion). Returns a full undeleted entity list including (optional) deletion metadata.
📄️ Undelete a 'Blob' by id
Undeletes a single 'Blob' entity (only if the entity type supports soft-deletion). Returns a full undeleted entity including (optional) deletion metadata.
📄️ Add/remove/update mappings between 'Blob' entities and other entities
Adds/Removes/Updates mappings between entities (e.g. test cases, test runs, etc.) if the mapping is defined. Id values are named by entity e.g. 'testcase_id', 'testrun_id' (see request schema)