Cambio Healthcare Systems Payment Notice API

The Payment Notice API from Cambio Healthcare Systems — 1 operation(s) for payment notice.

Operations 1

POST / Register payment #

Documentation

📖
Documentation
https://developer.openservices.cambio.se/api-details#api=attention-signal
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=authorizer-openid-connect
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=booked-appointments
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=care-contacts
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=care-contacts-v2
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=chemistry-lab-results
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=chemistry-lab-results-v2
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=diagnosis
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=diagnosis-v2
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=fhir-r4-public-profiles
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=journal-notes
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=journal-notes-v2
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=medication-prescriptions
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=medication-prescriptions-v2
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=patient-information
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=patient-information-v2
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=payment-notice
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=referral-requests
📖
Documentation
https://developer.openservices.cambio.se/api-details#api=video-meetings

Specifications

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/cambio-healthcare-systems-payment-notice-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

cambio-healthcare-systems-payment-notice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Payment Notice API
  description: 'Intended Use

    The intended use of this API is to register the payment for a given appointment for the given patient.'
  version: '1.0'
servers:
- url: https://api.openservices.cambio.se/api/open/paymentnotice
security:
- {}
- apiKeyHeader: []
- apiKeyQuery: []
tags:
- name: Payment Notice
paths:
  /:
    post:
      operationId: register-payment
      summary: Register payment
      description: 'Register payment for a given appointment for a given patient. This API can only be used to set payment status to PAID.


        OAuth scope for access : user/PaymentNotice.write

        ,'
      responses:
        '200':
          description: Request succeeded for the given patient.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentNoticeResponse'
              examples:
                default:
                  value:
                  - ResultCode: OK
                    Comment: string
                    Any:
                    - {}
        '401':
          description: Invalid access token. The client must request a new token from the authorization server.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                default:
                  value:
                    statusCode: 401
                    message: Invalid access token.
        '403':
          description: Insufficient OAuth2 scope for access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                default:
                  value:
                    statusCode: 403
                    message: Insufficient scope.
        '429':
          description: Too many requests in a given amount of time.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                default:
                  value:
                    statusCode: 429
                    message: Rate limit is exceeded. Try again in 5 seconds.
      parameters:
      - name: patient
        in: header
        description: The patient number when acting as a care giver or partner.
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Paymentnotice'
            examples:
              default:
                value:
                  status: PAID
                  contactId: string
                  paymentType: CARD
      tags:
      - Payment Notice
components:
  schemas:
    ErrorResponse:
      description: Generic error response for all systems and applications errors.
      properties:
        error:
          description: Error reason in text.
          type: string
        path:
          description: Path to requested resource.
          type: string
        status:
          description: HTTP status.
          type: integer
        timestamp:
          description: Timestamp (milliseconds since epoch).
          type: integer
      type: object
    SetPaymentResponse:
      properties:
        ResultCode:
          type: string
          enum:
          - OK
          - ERROR
          - INFO
        Comment:
          type: string
        Any:
          type: array
          items:
            type: object
    PaymentNoticeResponse:
      description: List of payments
      type: array
      items:
        $ref: '#/components/schemas/SetPaymentResponse'
    Paymentnotice:
      type: object
      required:
      - contactId
      - status
      - paymentType
      properties:
        status:
          description: Status of the payment
          type: string
          enum:
          - PAID
        contactId:
          description: Id of the appointment that should be set as paid.
          type: string
        paymentType:
          description: Type of payment
          type: string
          enum:
          - CARD
          - INVOICE
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      name: Ocp-Apim-Subscription-Key
      in: header
    apiKeyQuery:
      type: apiKey
      name: subscription-key
      in: query