forked from MathieuLamiot/TechTeamBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add openapi.yaml with support/wprocket-ips endpoint
- Loading branch information
1 parent
4feb53b
commit 571931d
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
openapi: 3.0.3 | ||
info: | ||
title: TB-TT | ||
description: |- | ||
This a description from the endpoints from TB-TT service. | ||
contact: | ||
email: [email protected] | ||
version: 1.0.0 | ||
externalDocs: | ||
description: Notion Documentation | ||
url: https://www.notion.so/wpmedia/TB-TT-137d921c1ff947c4a19e9d0a83262e6a?pvs=4 | ||
servers: | ||
- url: https://wpm-tbtt.public-default.live1-k8s-cph3.one.com | ||
tags: | ||
- name: support | ||
description: Automation for the support team | ||
paths: | ||
/support/wprocket-ips: | ||
post: | ||
description: Retrieves the list of servers and IPs used for WP Media products. | ||
tags: | ||
- support | ||
responses: | ||
200: | ||
description: The list has been correctly retrieved and returned. | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/SupportWPRocketIPsResponse' | ||
components: | ||
schemas: | ||
SupportWPRocketIPsResponse: | ||
type: string |