Navigate Access codes API

The Access codes API from Navigate — 1 operation(s) for access codes.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/navigate-access-codes-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

navigate-access-codes-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: NavigateAI Access codes API
  version: 1.0.0
  description: The NavigateAI external API allows you to programmatically manage locations, scoping, work orders, and more.
servers:
- url: https://api.navigateai.co
tags:
- name: Access codes
paths:
  /v1/location/{location_id}/create_access_code:
    post:
      operationId: api_external_api_location_create_access_code
      summary: Create an access code
      parameters:
      - in: path
        name: location_id
        schema:
          title: Location Id
          type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateAccessCodeResponse'
      tags:
      - Access codes
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAccessCodeRequest'
        required: true
      security:
      - ApiKeyAuth: []
components:
  schemas:
    CreateAccessCodeRequest:
      properties:
        visit_type_slug:
          title: Visit Type Slug
          type: string
        work_order_id:
          anyOf:
          - type: string
          - type: 'null'
          description: Associate this access code with a work order. The work order must be in `open` status.
          title: Work Order Id
        metadata:
          anyOf:
          - $ref: '#/components/schemas/AccessCodeCustomerMetadataExternalSchema'
          - type: 'null'
        visit_metadata:
          anyOf:
          - type: object
          - type: 'null'
          title: Visit Metadata
        expires_at:
          anyOf:
          - format: date-time
            type: string
          - type: 'null'
          description: When the access code stops working, as an ISO 8601 UTC timestamp (e.g. `2026-12-31T23:59:59Z`). Must be in the future and timezone-aware. Omit for a code that never expires.
          title: Expires At
      required:
      - visit_type_slug
      title: CreateAccessCodeRequest
      type: object
    CreateAccessCodeResponse:
      properties:
        access_code:
          title: Access Code
          type: string
        deeplink_url:
          title: Deeplink Url
          type: string
        expires_at:
          anyOf:
          - format: date-time
            type: string
          - type: 'null'
          title: Expires At
      required:
      - access_code
      - deeplink_url
      - expires_at
      title: CreateAccessCodeResponse
      type: object
    AccessCodeCustomerMetadataExternalSchema:
      additionalProperties: false
      properties:
        recipient:
          anyOf:
          - type: string
          - type: 'null'
          description: Who the access code is intended for (e.g. a vendor name or email).
          title: Recipient
        redirect_url:
          anyOf:
          - type: string
          - type: 'null'
          description: Optional URL that the recipient can open from the NavigateAI mobile app after using the access code (via long-press on the upload entry). Useful for sending the recipient back to a task or page in your own app once they've finished capturing.
          title: Redirect Url
      title: AccessCodeMetadata
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer