availity · Capability

Availity Service Reviews (Prior Authorization) API — Service Reviews

Availity Service Reviews (Prior Authorization) API — Service Reviews. 3 operations. Lead operation: Availity Create Service Review. Self-contained Naftiko capability covering one Availity business surface.

Run with Naftiko AvailityService Reviews

What You Can Do

POST
Createservicereview — Availity Create Service Review
/v1/availity/intelligent-payer-network/v1/service-reviews
GET
Listservicereviews — Availity List Service Reviews
/v1/availity/intelligent-payer-network/v1/service-reviews
GET
Getservicereview — Availity Get Service Review
/v1/availity/intelligent-payer-network/v1/service-reviews/{id}

MCP Tools

availity-create-service-review

Availity Create Service Review

availity-list-service-reviews

Availity List Service Reviews

read-only idempotent
availity-get-service-review

Availity Get Service Review

read-only idempotent

Capability Spec

service-reviews-service-reviews.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Availity Service Reviews (Prior Authorization) API — Service Reviews
  description: 'Availity Service Reviews (Prior Authorization) API — Service Reviews. 3 operations. Lead operation: Availity
    Create Service Review. Self-contained Naftiko capability covering one Availity business surface.'
  tags:
  - Availity
  - Service Reviews
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AVAILITY_API_KEY: AVAILITY_API_KEY
capability:
  consumes:
  - type: http
    namespace: service-reviews-service-reviews
    baseUri: https://api.availity.com
    description: Availity Service Reviews (Prior Authorization) API — Service Reviews business capability. Self-contained,
      no shared references.
    resources:
    - name: availity-intelligent-payer-network-v1-service-reviews
      path: /availity/intelligent-payer-network/v1/service-reviews
      operations:
      - name: createservicereview
        method: POST
        description: Availity Create Service Review
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listservicereviews
        method: GET
        description: Availity List Service Reviews
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: payerId
          in: query
          type: string
          description: Filter by payer ID
        - name: limit
          in: query
          type: integer
          description: Number of results per page
        - name: offset
          in: query
          type: integer
          description: Pagination offset
    - name: availity-intelligent-payer-network-v1-service-reviews-id
      path: /availity/intelligent-payer-network/v1/service-reviews/{id}
      operations:
      - name: getservicereview
        method: GET
        description: Availity Get Service Review
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Service review transaction ID
          required: true
    authentication:
      type: bearer
      token: '{{env.AVAILITY_API_KEY}}'
  exposes:
  - type: rest
    namespace: service-reviews-service-reviews-rest
    port: 8080
    description: REST adapter for Availity Service Reviews (Prior Authorization) API — Service Reviews. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/availity/intelligent-payer-network/v1/service-reviews
      name: availity-intelligent-payer-network-v1-service-reviews
      description: REST surface for availity-intelligent-payer-network-v1-service-reviews.
      operations:
      - method: POST
        name: createservicereview
        description: Availity Create Service Review
        call: service-reviews-service-reviews.createservicereview
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listservicereviews
        description: Availity List Service Reviews
        call: service-reviews-service-reviews.listservicereviews
        with:
          payerId: rest.payerId
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/availity/intelligent-payer-network/v1/service-reviews/{id}
      name: availity-intelligent-payer-network-v1-service-reviews-id
      description: REST surface for availity-intelligent-payer-network-v1-service-reviews-id.
      operations:
      - method: GET
        name: getservicereview
        description: Availity Get Service Review
        call: service-reviews-service-reviews.getservicereview
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: service-reviews-service-reviews-mcp
    port: 9090
    transport: http
    description: MCP adapter for Availity Service Reviews (Prior Authorization) API — Service Reviews. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: availity-create-service-review
      description: Availity Create Service Review
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: service-reviews-service-reviews.createservicereview
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: availity-list-service-reviews
      description: Availity List Service Reviews
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-reviews-service-reviews.listservicereviews
      with:
        payerId: tools.payerId
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: availity-get-service-review
      description: Availity Get Service Review
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: service-reviews-service-reviews.getservicereview
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.