OCNORA

ERPNext

CRM & salesAPI keycredential probe

Any ERPNext / Frappe DocType: CRUD, search, submit, reports.

OCNORA ships 19 typed ERPNext operations. Each node has a schema-driven form, input and output tables beside its settings, and is pre-flighted by Workflow Health before your first real run.

Operations 19

  • Attach File
    Attach base64-encoded file content to a document and return the File record ERPNext created.
    erpnext.attach_file
  • Call Method
    Call any whitelisted server method by its dotted path — the escape hatch for endpoints this family does not wrap.
    erpnext.call_method
  • Cancel Document
    Cancel a submitted document, moving it to docstatus 2 and reversing its ledger entries.
    erpnext.cancel_document
  • Count Documents
    Count how many documents of a DocType match the filters, fetching none.
    erpnext.count_documents
  • Create Document
    Insert one document of a DocType and return it as ERPNext stored it.
    erpnext.create_document
  • Create Documents
    Insert up to 200 documents in one request. The whole batch is one transaction, so a single failure writes nothing.
    erpnext.create_documents
  • Delete Document
    Delete one document by name. ERPNext refuses when another document still links to it.
    erpnext.delete_document
  • Get Document
    Read one whole document by name, including its child tables.
    erpnext.get_document
  • Get Field Values
    Read named fields off the first document that matches, without fetching the rest of it.
    erpnext.get_value
  • Check Permission
    Ask ERPNext whether the connection's user may read, write, submit or cancel a given document.
    erpnext.has_permission
  • List Documents
    Fetch one page of documents of a DocType, with optional field list, filters and sort order.
    erpnext.list_documents
  • Rename Document
    Rename a document, optionally merging it into an existing one of the same DocType.
    erpnext.rename_document
  • Run Report
    Run a saved ERPNext report by name and return its columns and rows.
    erpnext.run_report
  • Search Documents
    Find documents whose chosen fields contain a search term, as a case-insensitive OR of 'like' matches.
    erpnext.search_documents
  • Search Link Field
    Run the same link-field lookup the ERPNext UI uses, returning each match's name with the description shown beside it.
    erpnext.search_link
  • Set Field Value
    Write one field — or several at once — on a document, running the DocType's own validation.
    erpnext.set_value
  • Submit Document
    Submit a submittable document, moving it from draft to submitted and posting its ledger entries.
    erpnext.submit_document
  • Update Document
    Apply a partial update to one document by name and return the saved result.
    erpnext.update_document
  • Update Documents
    Update many documents in one request, reporting each failure separately instead of failing the whole batch.
    erpnext.update_documents

Run your first ERPNext workflow today.

Create a free workspace, add the connection, pick a template or describe the workflow to Build with AI. Workflow Health checks it before it runs.