diff --git a/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json b/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json new file mode 100644 index 0000000000000000000000000000000000000000..cf91690f02a85bf396db57cc4ea68a3f4cb1d3b7 --- /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