28 lines
509 B
YAML
28 lines
509 B
YAML
openapi: 3.0.1
|
|
info:
|
|
title: Hostsharing hsadmin-ng API
|
|
version: v0
|
|
servers:
|
|
- url: http://localhost:8080
|
|
description: Local development default URL.
|
|
|
|
paths:
|
|
|
|
# Partners
|
|
|
|
/api/hs/office/partners:
|
|
$ref: "./hs-office-partners.yaml"
|
|
|
|
/api/hs/office/partners/{partnerUUID}:
|
|
$ref: "./hs-office-partners-with-uuid.yaml"
|
|
|
|
|
|
# Contacts
|
|
|
|
/api/hs/office/contacts:
|
|
$ref: "./hs-office-contacts.yaml"
|
|
|
|
/api/hs/office/contacts/{contactUUID}:
|
|
$ref: "./hs-office-contacts-with-uuid.yaml"
|
|
|