Noyo Connection Eligibility API
The Connection Eligibility API from Noyo — 1 operation(s) for connection eligibility.
The Connection Eligibility API from Noyo — 1 operation(s) for connection eligibility.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/noyo-connection-eligibility-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
description: APIs to manage and consume information about Carriers
title: Noyo Carrier Carrier Mapped Field Connection Eligibility API
version: 1.0.0
servers: []
tags:
- name: Connection Eligibility
paths:
/api/v1/groups/{group_id}/connection_eligibility:
x-summary: Get Connection Eligibility for a Group
get:
description: 'Returns connection eligibility information for a group. If a carrier_id is provided,
returns eligibility information for that specific carrier. Otherwise, returns
eligibility information for all carriers for the given group.
'
operationId: getConnectionEligibility
parameters:
- description: The ID of the group to check eligibility for
in: path
name: group_id
required: true
schema:
format: uuid
type: string
- description: Optional carrier ID to filter results for a specific carrier
in: query
name: carrier_id
required: false
schema:
format: uuid
type: string
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/ConnectionEligibilityResult'
description: Successful Response - Returns connection eligibility information
'401':
description: Unauthorized
tags:
- Connection Eligibility
components:
schemas:
ConnectionEligibilityResult:
properties:
carrier_id:
format: uuid
type: string
data_exchange_configuration:
$ref: '#/components/schemas/DataExchangeConfiguration'
eligibility:
type: string
eligibility_rules:
items:
$ref: '#/components/schemas/EligibilityRuleEvaluation'
type: array
group_id:
format: uuid
type: string
required:
- carrier_id
- eligibility
- group_id
type: object
x-field_order: []
EnrollmentsToCarrier:
properties:
default_method:
default: null
description: Default method for sending data to the carrier
enum:
- api
- feeds
- manual_noyo
- manual_partner
type:
- string
- 'null'
enabled:
default: false
description: Flag indicating if sending to the carrier is enabled
type: boolean
type: object
DataExchange:
properties:
enrollment_errors:
allOf:
- $ref: '#/components/schemas/EnrollmentErrors'
description: Data exchange configuration for enrollment errors
enrollments:
allOf:
- $ref: '#/components/schemas/Enrollments'
description: Data exchange configuration for enrollments
group_structure:
allOf:
- $ref: '#/components/schemas/GroupStructure'
description: Data exchange configuration for group structure
type: object
EligibilityRuleEvaluation:
properties:
description:
type: string
result:
type: string
rule:
type: string
required:
- description
- result
- rule
type: object
Enrollments:
properties:
from_carrier:
allOf:
- $ref: '#/components/schemas/EnrollmentsFromCarrier'
description: Configuration for receiving data from the carrier
to_carrier:
allOf:
- $ref: '#/components/schemas/EnrollmentsToCarrier'
description: Configuration for sending data to the carrier
type: object
EnrollmentErrors:
properties:
default_method:
default: null
description: Default method for receiving enrollment errors from the carrier
enum:
- snapshot_errors
- error_report
type:
- string
- 'null'
enabled:
default: false
description: Flag indicating if enrollment errors are enabled
type: boolean
type: object
DataExchangeConfiguration:
properties:
data_exchange:
$ref: '#/components/schemas/DataExchange'
name:
default: Not Connected
type: string
type: object
GroupStructure:
properties:
default_method:
default: null
description: Default method for receiving group structure
enum:
- api
- account_structure_file
type:
- string
- 'null'
enabled:
default: false
description: Flag indicating if receiving group structure is enabled
type: boolean
type: object
x-field_order: []
EnrollmentsFromCarrier:
properties:
enabled:
default: false
description: Flag indicating if receiving data from the carrier is enabled
type: boolean
type: object