From a6e768add0cf2468b61cb3a011d464897738f268 Mon Sep 17 00:00:00 2001 From: Joe Markey <joseph.markey@wisc.edu> Date: Mon, 1 Jul 2024 14:55:30 -0500 Subject: [PATCH] Upload New File --- .../getexternalcustomers.json | 89 +++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json diff --git a/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json b/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json new file mode 100644 index 0000000..cf91690 --- /dev/null +++ b/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json @@ -0,0 +1,89 @@ +{ + "swagger" : "2.0", + "info" : { + "description" : null, + "version" : "1.0.0", + "title" : null, + "termsOfService" : null, + "contact" : null, + "license" : null + }, + "host" : "api.wisc.edu", + "basePath" : "/finance", + "schemes" : [ "https" ], + "paths" : { + "/externalcustomers" : { + "get" : { + "tags" : [ "getexternalcustomers" ], + "summary" : null, + "description" : null, + "operationId" : "getexternalcustomers", + "produces" : [ "application/json" ], + "consumes" : [ "application/json" ], + "parameters" : [ ], + "responses" : { + "200" : { + "description" : "successful operation", + "schema" : { + "$ref" : "#/definitions/getexternalcustomers" + } + } + } + } + } + }, + "definitions" : { + "getexternalcustomers##links" : { + "properties" : { + "first" : { + "type" : "string" + }, + "last" : { + "type" : "string" + }, + "next" : { + "type" : "string" + }, + "prev" : { + "type" : "string" + }, + "self" : { + "type" : "string" + } + } + }, + "getexternalcustomers##meta" : { + "properties" : { + "pageNumber" : { + "type" : "number", + "format" : "int32" + }, + "pageSize" : { + "type" : "number", + "format" : "int32" + }, + "totalCount" : { + "type" : "number", + "format" : "int32" + }, + "totalPages" : { + "type" : "number", + "format" : "int32" + } + } + }, + "getexternalcustomers" : { + "properties" : { + "data" : { + "type" : "string" + }, + "links" : { + "$ref" : "#/definitions/getexternalcustomers##links" + }, + "meta" : { + "$ref" : "#/definitions/getexternalcustomers##meta" + } + } + } + } +} \ No newline at end of file -- GitLab