Navigate Rejection reason options API

The Rejection reason options API from Navigate — 2 operation(s) for rejection reason options.

Operations 2

GET /v1/rejection_reason_options List rejection reason options #
GET /v1/rejection_reason_options/{rejection_reason_option_id} Get a rejection reason option #

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-rejection-reason-options-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

navigate-rejection-reason-options-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NavigateAI Access codes Rejection reason options 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: Rejection reason options
paths:
  /v1/rejection_reason_options:
    get:
      operationId: api_external_api_rejection_reason_option_list_rejection_reason_options
      summary: List rejection reason options
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListRejectionReasonOptionsResponse'
      description: List the live line item rejection reason options configured for the requesting organization.
      tags:
      - Rejection reason options
      security:
      - ApiKeyAuth: []
  /v1/rejection_reason_options/{rejection_reason_option_id}:
    get:
      operationId: api_external_api_rejection_reason_option_get_rejection_reason_option
      summary: Get a rejection reason option
      parameters:
      - in: path
        name: rejection_reason_option_id
        schema:
          title: Rejection Reason Option Id
          type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RejectionReasonOptionResponse'
      description: 'Fetch a single line item rejection reason option by id for the requesting organization.


        Unlike the list endpoint, this point lookup returns soft-deleted options as well, so that

        integrations can resolve historical `rejection_reason_option_id` values already stored on

        line items even after the option has been deleted.'
      tags:
      - Rejection reason options
      security:
      - ApiKeyAuth: []
components:
  schemas:
    ListRejectionReasonOptionsResponse:
      properties:
        rejection_reason_options:
          items:
            $ref: '#/components/schemas/RejectionReasonOptionExternalSchema'
          title: Rejection Reason Options
          type: array
      required:
      - rejection_reason_options
      title: ListRejectionReasonOptionsResponse
      type: object
    RejectionReasonOptionExternalSchema:
      properties:
        id:
          description: Opaque identifier for this rejection reason option.
          title: Id
          type: string
        label:
          description: Display text for this reason.
          title: Label
          type: string
      required:
      - id
      - label
      title: RejectionReasonOption
      type: object
    RejectionReasonOptionResponse:
      properties:
        rejection_reason_option:
          $ref: '#/components/schemas/RejectionReasonOptionExternalSchema'
      required:
      - rejection_reason_option
      title: RejectionReasonOptionResponse
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer