Debbie Collect Updates API

The Updates API from Debbie Collect — 2 operation(s) for updates.

OpenAPI Specification

debbie-collect-updates-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Debbie Client Billing Updates API
  description: The Debbie Client API is intended for creditors integrating directly with Debbie. It allows clients to create and update collection cases, exchange payment data, and receive case status updates.
  version: '1.0'
  contact:
    name: Debbie API Support
    email: api-support@debbie.dk
servers:
- url: https://creditor.debbie.dk/api
  description: Production
security:
- bearerAuth: []
tags:
- name: Updates
paths:
  /updates:
    post:
      summary: Create an update
      operationId: createUpdate
      tags:
      - Updates
      responses:
        '201':
          description: Update created.
  /updates/{updateId}:
    patch:
      summary: Update an update
      operationId: patchUpdate
      tags:
      - Updates
      parameters:
      - in: path
        name: updateId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Updated update.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer