Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Finance / Priority Software REST API
Priority Software REST API logo

Priority Software REST API

✓ Official Vendor SpecFinanceAccountingbasic, apiKey10 EndpointsREST

For Agents

Access Priority ERP data through OData protocol. Query, create, update, and delete business entities across all Priority forms with filtering, sorting, and pagination support.

Use for: I need to query orders from Priority ERP with a date filter, I want to create a new customer record in Priority, List all available entity sets in this Priority environment, Get the OData metadata schema for Priority forms

Not supported: Does not handle payroll processing, HR management, or CRM-specific features — use for OData CRUD access to Priority ERP financial and operational forms only.

Priority Software REST API provides OData-based access to Priority ERP forms and entities. The API supports full CRUD operations with OData query parameters including filtering, sorting, pagination, field selection, and entity expansion. It covers metadata retrieval, entity management through dynamic paths, and navigation to related subform entities. Rate limits are set at 100 calls per minute per user on cloud deployments.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Priority Software REST API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Priority Software REST API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Priority Software REST API.

Query Priority ERP entities with OData filter, select, expand, and orderby parameters

Create new business records in any Priority form through the generic entity endpoint

Navigate parent-child entity relationships through OData navigation properties

Retrieve full OData schema metadata describing all entity types and relationships

Paginate large result sets using top, skip, and server-side next-link cursors

Delete entities by key from any Priority form collection

Fetch Priority system version and server environment information

Use Cases

Patterns agents use Priority Software REST API for, with concrete tasks.

★ ERP Data Querying and Reporting

Query Priority ERP forms using OData conventions to extract business data for reporting. The API supports filtering with expressions like CUSTNAME eq 'John', sorting with $orderby, field selection with $select, and pagination with $top and $skip. MAXAPILINES defaults to 2000 records per page in Priority v25.1+. This enables building custom dashboards and reports without direct database access.

List entities from the ORDERS form with $filter set to 'CURDATE gt 2026-01-01' and $top set to 50, then retrieve the first order's ORDERITEMS subform

Business Record Management

Create, update, and delete business entities across all Priority ERP forms through a unified REST interface. The API uses dynamic entity paths where the form name becomes the URL segment. POST creates new records, PATCH updates existing ones by key, and DELETE removes records. This enables automated data entry from external systems into Priority without manual ERP interaction.

Create a new entity in the CUSTOMERS form with CUSTNAME 'Acme Corp' and PHONE '555-0100', then verify it exists by querying with a filter on CUSTNAME

Entity Relationship Navigation

Navigate hierarchical relationships between Priority forms using OData navigation properties. Access subform data such as order line items, invoice details, or customer contacts by traversing the parent entity key and navigation path. This allows agents to reconstruct complete business documents from their component parts without multiple unrelated queries.

Retrieve order 'ORD001' from the ORDERS entity set, then navigate to its ORDERITEMS subform and return all line items with their quantities and prices

AI Agent ERP Integration via Jentic

AI agents can access Priority ERP data through Jentic without configuring OData URLs or managing Basic Auth credentials. Jentic provides operation schemas for each Priority endpoint and handles authentication, so agents can query business data, create records, and navigate entity relationships by describing their intent in natural language.

Search Jentic for 'query priority erp orders', load the listEntities operation schema, and execute it with entitySet 'ORDERS' and $top 10

Key Endpoints

10 endpoints — priority software rest api provides odata-based access to priority erp forms and entities.

METHOD

PATH

DESCRIPTION

GET

/

List available entity sets in the Priority instance

GET

/$metadata

Get full OData schema metadata

GET

/{entitySet}

Query entities with OData filter and sort

POST

/{entitySet}

Create a new entity in a Priority form

GET

/{entitySet}('{key}')

Retrieve a single entity by key

PATCH

/{entitySet}('{key}')

Update an entity with partial data

DELETE

/{entitySet}('{key}')

Delete an entity by key

GET

/{entitySet}('{key}')/{navigationProperty}

Navigate to related subform entities

GET

/

List available entity sets in the Priority instance

GET

/$metadata

Get full OData schema metadata

GET

/{entitySet}

Query entities with OData filter and sort

POST

/{entitySet}

Create a new entity in a Priority form

GET

/{entitySet}('{key}')

Retrieve a single entity by key

PATCH

/{entitySet}('{key}')

Update an entity with partial data

DELETE

/{entitySet}('{key}')

Delete an entity by key

GET

/{entitySet}('{key}')/{navigationProperty}

Navigate to related subform entities

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Priority Basic Auth credentials and Personal Access Tokens are stored encrypted in the Jentic vault. Agents receive scoped access without seeing raw passwords or PAT values in their context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'query priority erp orders' or 'create customer in priority') and Jentic returns the matching OData operation with full parameter schemas, including the dynamic entitySet path variable.

Time to first call

Time to first call

Direct Priority API integration: 2-4 days for OData URL construction, auth setup, and entity path discovery. Through Jentic: under 1 hour using pip install jentic, search, load schema, and execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Priority REST API

→

Same ERP system accessed through a different vendor domain with batch operations and metadata cache clearing

Use prioritysoftware.com/main when you need batch operations or metadata cache clearing. Use priority-software.github.io/main for the vendor-official OData documentation-aligned spec.

Alternative

Priority REST API

→

Another vendor-official spec for the same Priority ERP with OAuth2 support and batch operations

Use prioritysoftware.github.io/main when you need OAuth2 authentication or batch operations. Both specs access the same underlying Priority ERP system.

Complementary

Shopify API

→

E-commerce platform to sync orders and inventory with Priority ERP

Use Shopify for storefront and order capture. Use Priority for back-office ERP operations like accounting, inventory management, and financial reporting.

FAQs

Specific to using Priority Software REST API through Jentic.

What authentication does the Priority Software REST API use?

The API supports Basic authentication with Priority username and password, Personal Access Tokens (PAT) via the Authorization header, and application license keys via X-App-Id and X-App-Key headers. Through Jentic, these credentials are stored encrypted in the vault and agents authenticate without seeing raw passwords or tokens.

What are the rate limits for the Priority Software REST API?

Cloud deployments enforce 100 API calls per minute per user. The API returns a 429 status code when this limit is exceeded. On-premise installations may have different limits depending on server configuration. The MAXAPILINES constant (2000 records in v25.1+) limits the number of entities returned per page.

Can I query Priority ERP data with filters and sorting?

Yes. The GET /{entitySet} endpoint supports standard OData query parameters: $filter for conditional filtering, $orderby for sorting, $top and $skip for pagination, $select for field projection, and $expand for including related entities inline. Filter syntax uses OData conventions like 'CUSTNAME eq John' or 'CURDATE gt 2026-01-01'.

How do I access subform data in Priority through the API?

Use the navigation property path pattern: GET /{entitySet}('{key}')/{navigationProperty}. For example, to get order lines for order 'ORD001', request GET /ORDERS('ORD001')/ORDERITEMS. The response returns the child entities with all their fields. You can apply $filter, $select, $top, and $skip to the subform results.

How do I get metadata for a specific Priority form through Jentic?

Search Jentic for 'get priority entity metadata', load the getEntityMetadata operation schema, and execute it with the entityName parameter set to the form name (e.g., 'ORDERS'). This returns the full field definitions, data types, and relationships for that form. Available in Priority v25.0 and later. Install with pip install jentic.

What OData version does the Priority REST API use?

The Priority REST API uses OData v4 conventions. You can verify the exact version by calling GET /GetPriorityVersion() which returns the Priority version and server information. The full schema is available via GET /$metadata in XML format describing all entity types and their relationships.

GET STARTED

Start building with Priority Software REST API

Explore with Jentic
View OpenAPI Document