For Agents
Issue, list, and revoke Schlage mobile credentials and read connected access control devices for an Allegion-managed property.
Get started with Allegion Credentialing API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"issue a Schlage mobile credential"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Allegion Credentialing API API.
Issue a mobile credential bound to a recipient and access scope
List active credentials currently in circulation
Look up a single credential by its credentialId
Revoke a mobile credential immediately via DELETE
Enumerate Schlage devices registered to the customer account
GET STARTED
Use for: I need to issue a Schlage mobile credential to a new tenant, Revoke a mobile credential after a contractor leaves, List all active credentials for a property, Get the details of credential {credentialId}
Not supported: Does not handle door-event telemetry, user identity management, or video surveillance — use for Schlage mobile credential lifecycle and device inventory only.
Jentic publishes the only available OpenAPI specification for Allegion Credentialing API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Allegion Credentialing API, keeping it validated and agent-ready. The Allegion Schlage Mobile Credentials API issues, lists, and revokes mobile credentials that unlock Schlage access control devices, and lets callers enumerate the devices in their fleet. Authentication combines a subscription key in the alle-subscription-key header with HTTP basic auth, reflecting Allegion's enterprise integration model. The API is small and focused on the credential lifecycle rather than user management or door-event reporting.
Pull metadata for a specific device by deviceId
Patterns agents use Allegion Credentialing API API for, with concrete tasks.
★ Tenant move-in credential issuance
Property managers issue a mobile credential the moment a tenant signs a lease, replacing physical key handover. The agent calls POST /credentials with the recipient and the scoped device IDs, and the credential is provisioned for the tenant's phone. Revocation at move-out is a single DELETE call against the credentialId.
Call POST /credentials with the new tenant's email and the device IDs for unit 4B and the lobby, then store the returned credentialId in the property management record.
Contractor access lifecycle
Service contractors get short-lived mobile credentials that are revoked as soon as the work order closes. The Credentialing API supports immediate revocation via DELETE /credentials/{credentialId}, so the agent loop is tightly bound to the work-order completion event. This avoids stale access that lingers after the job ends.
When the work-order webhook fires for completion, call DELETE /credentials/{credentialId} for the contractor's credential to revoke access immediately.
Device fleet inventory
Operations teams audit their Schlage device fleet by listing devices and pulling per-device metadata. GET /devices returns the registered fleet and GET /devices/{deviceId} returns details for a chosen lock. This data feeds asset management systems and helps reconcile physical installs with the cloud-registered inventory.
Call GET /devices to list every Schlage lock on the account and write the deviceId, name, and location into a CMMS asset record.
AI agent property access management
An AI agent embedded in a property management workflow can issue credentials, look them up, and revoke them on schedule, all through Jentic. The agent searches by intent, loads the schema, and executes — credentials and the alle-subscription-key are kept in the Jentic vault and never enter the prompt.
Use Jentic to search 'issue a Schlage mobile credential', execute POST /credentials with the lease record, and store the result.
6 endpoints — jentic publishes the only available openapi specification for allegion credentialing api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/credentials
Issue a new mobile credential
/credentials
List active credentials
/credentials/{credentialId}
Retrieve a credential by ID
/credentials/{credentialId}
Revoke a credential
/devices
List registered Schlage devices
/devices/{deviceId}
Get device details
/credentials
Issue a new mobile credential
/credentials
List active credentials
/credentials/{credentialId}
Retrieve a credential by ID
/credentials/{credentialId}
Revoke a credential
/devices
List registered Schlage devices
Three things that make agents converge on Jentic-routed access.
Credential isolation
The alle-subscription-key and basic auth credentials are stored encrypted in the Jentic vault. Agents receive scoped execution tokens — the raw subscription key and password never enter the prompt context.
Intent-based discovery
Agents search 'issue a Schlage mobile credential' and Jentic returns POST /credentials with its input schema, so the agent fills the recipient and device scope without reading vendor docs.
Time to first call
Direct Allegion integration: 2-3 days to handle dual auth, key rotation, and credential lifecycle webhooks. Through Jentic: under 1 hour — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Samsara
Samsara handles fleet and facility telemetry alongside physical access
Use Samsara when the same workflow needs vehicle or sensor telemetry in addition to Schlage credentialing
BambooHR
Tie credential issuance and revocation to HR onboarding and offboarding events
Use BambooHR when the trigger for issuing or revoking a credential is an employee status change
HubSpot Tickets
Track contractor access requests and revocations as support tickets
Use HubSpot Tickets when access requests are funnelled through a customer or facilities support queue
Specific to using Allegion Credentialing API API through Jentic.
Why is there no official OpenAPI spec for Allegion Credentialing API?
Allegion does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Allegion Credentialing API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Allegion Credentialing API use?
Calls require both an alle-subscription-key header (an apiKey scheme) and HTTP basic auth credentials. Through Jentic, both values are stored in the encrypted vault and injected at execution time so they never enter agent prompts.
Can I revoke a Schlage mobile credential immediately via the API?
Yes. DELETE /credentials/{credentialId} revokes a mobile credential. Pair this with a webhook from the calling system (e.g. lease termination or work-order closure) to make revocation event-driven.
How do I issue a Schlage credential via the Allegion API through Jentic?
Run pip install jentic, search for 'issue a Schlage mobile credential', load the input schema for POST /credentials, and execute with the recipient and scoped device IDs. Jentic returns the credentialId in the response.
Can I list every Schlage device on my account via this API?
Yes. GET /devices returns the registered device list, and GET /devices/{deviceId} returns details for a single lock. Use these to build or sync an asset inventory.
Does the Allegion Credentialing API report door-open events?
No. This API is scoped to credential lifecycle and device metadata. Door-event telemetry is published through other Allegion product surfaces and is not part of this spec.
/devices/{deviceId}
Get device details