REST


Related Questions
I configured multiple repositories in local nuxeo. I created a new Document Container inside the new repository and try to fetch this document using a page provider. Nuxeo is throwing this exception javax.servlet.ServletException: ...
  0 votes
  1 answers
  1 comments
  912 views

Hi, I am looking to download/export documents from Nuxeo 6 through the REST API using a JS script. Ideally, I would like to download entire folder structures and maintain the structure and file metadata. I would appreciate any help, resources, or ...
  0 votes
  1 answers
  0 comments
  883 views

Hi Eveybody Im triying execute the next endpoint http://localhost:8080/nuxeo/api/v1/search/lang/(psq,sql,potsgressql,etc)l/execute?query=SELECT * FROM documento_base But the execute return a Exception: … “infos”: [], “statusCode”: 400, ...
  0 votes
  1 answers
  0 comments
  775 views

When making the preview of a document we need to specify the format of the document. In this example we want to preview a photo, so the format is image : ...
  0 votes
  1 answers
  0 comments
  644 views

how to upload file into nuxeo using spring boot rest api http://localhost:8080/nuxeo
  0 votes
  1 answers
  0 comments
  959 views

I'm trying to count how much disk space the workspace is using, so I'm using NXQL rest api . This is my query: http://localhost:8080/nuxeo/site/api/v1/search/lang/NXQL/execute?query=SELECT COUNT(file:content/length) FROM Document Where ecm:isTrashed ...
  0 votes
  3 answers
  0 comments
  1338 views

Hi guys, I have a bad situation, Nuxeo isn't going well :(. I use Nuxeo 9.10 version and Nuxeo has a lot of performance issues. I attached appdynamics screenshots. As you can see some methods are very slow, such as /nuxeo/api/v1/path, ...
  0 votes
  1 answers
  0 comments
  961 views

I'm trying to retrieve document custom schema properties via a REST call. I am only able to pull basic document details. I would like to pull the custom schema fields for my document type via rest. Is this possible, and if so how can it be done? ...
  0 votes
  2 answers
  0 comments
  1195 views

Hi I want to know when ecm:versionVersionableId is set to be null and when it will be not null.
  0 votes
  2 answers
  1 comments
  771 views

Hi, I am using the REST API to search a Nuxeo LTS2019 document base. This request: ...
  0 votes
  1 answers
  1 comments
  1741 views

Hi, I'm trying to use the ILIKE operator with the REST API. I have a Workspace named 'Shared' on my instance, so from the Nuxeo NXQL Console it is working with “SELECT * FROM Document WHERE dc:title LIKE / ILIKE 'Shared' “. When I use GET (with ...
  0 votes
  2 answers
  1 comments
  1479 views

I tried to make a call HTTP using a request to complete a task :HOST/nuxeo/api/v1/task/{taskId}/{action} adding the values of two parameters(taskId,action) But I have an exception 500 What does it mean ?
  0 votes
  1 answers
  0 comments
  1073 views

  0 votes
  2 answers
  5 comments
  1118 views

What is the way to create a document and set a managed blob on it using the rest API, on a 10.3 snapshot? I have a custom blob provider, my client layer knows the id of the blob in the remote provider.
  0 votes
  1 answers
  1 comments
  1394 views

How can I allow a nuxeo group of users accounts to acces nuxeo only through the http rest API but deny them acces to the nuxeo web ui (jsf ui) ? I have searched the documentation but found nothing, please help!
  0 votes
  0 answers
  0 comments
  1197 views

Is that possible to use internationalization system (properties files) with FreeMarker and the Web-Engine ? Thanks
  0 votes
  0 answers
  0 comments
  1206 views

Hello All, I would like to use a page provider for my search endpoint. Is it possible to create a page provider without nuxeo studio? If yes, could you please tell me how?
  0 votes
  0 answers
  0 comments
  1079 views

I was setting up a password policy (via userManager extension point) on our nuxeo instance and discovered the following behavior: Entering a password that does not match the defined policy, when creating a user via WEB-UI, is resulting in an ...
  0 votes
  1 answers
  0 comments
  1274 views

Hi everybody, I'm having trouble uploading files with the Uploader object. Here's how I do it : I have a class dedicated to managing REST operations in which I created the methods. At instanciation : public TransferFactory(Client client){ uploader = ...
  0 votes
  1 answers
  0 comments
  1686 views

I can download file content using postman. When file is big it's ask me the location where I should download. Is there a possibility to automate the process and tell the location through rest api.
  0 votes
  1 answers
  0 comments
  1302 views

I have problem with uploading file with rest api using coldfusion language. At the first I tried using postman and it's working. For example first I sent http request to create batchId <cfhttpparam type="header" name="Authorization" value="Basic ...
  0 votes
  0 answers
  1 comments
  2328 views

  0 votes
  0 answers
  1 comments
  1915 views

I have updated my document, which is Test.pdf with the following metadata : transaction:date = “2050-12-25”, transaction:time = “16:00:00”, transaction:id = “aaaa-bbbb” Below the rest api: PUT http:// { “entity-type”: “document”, “properties”: { ...
  0 votes
  1 answers
  2 comments
  1776 views

I could not to log in to the nuxeo using my user - Administrator and password - Administrator. I am getting the following error: “Cannot create a CoreSession when transaction is marked rollback-only” Please see below error trace: 2018-04-27 ...
  0 votes
  0 answers
  0 comments
  1509 views

I am new to nuxeo. Is there possibilities to search document by directory and title. For example I have document “HelloWorld.doc” which is located inside “/default-domain/workspaces/Sample Content/PDF and Office Documents” . I can run rest api that ...
  0 votes
  1 answers
  0 comments
  2501 views

I am new to nuxeo and I would like to add customize metadata to the document, in my case it's transaction ID. For example I have created document from the file with rest api: POST http://nuxeo/nuxeo/api/v1/id/de72f8e6-348e-477b-8824-9b1c157b4f7d { ...
  1 votes
  3 answers
  2 comments
  3411 views

Please provide example project to create an custom rest api for nuxeo? I have gone through nuxeo documentation already but didn't really understood.
  0 votes
  1 answers
  1 comments
  1811 views

Hi, I am trying to develop a java program (java client + rest API) that allows to create nuxeo documents by using as input a csv file. I followed the tutorial of nuxeo “https://doc.nuxeo.com/nxdoc/java-client/#operation-api” and I created a document ...
  0 votes
  0 answers
  0 comments
  2024 views

Hi, I try to create a java client nuxeo, I followed this tutorial https://doc.nuxeo.com/nxdoc/java-client/, but i can't import “org.nuxeo.client.api”. it fails with an error : the import org.nuxeo.client.api cannot be resolved. Does anyone have any ...
  0 votes
  1 answers
  3 comments
  2450 views