From 28c4112ee155323506ded7fa5cad178ffe73bcd1 Mon Sep 17 00:00:00 2001
From: Joe Markey <joseph.markey@wisc.edu>
Date: Fri, 28 Jun 2024 18:13:42 -0500
Subject: [PATCH] Upload New File

---
 .../getExternalCustomers.json                 | 165 ++++++++++++++++++
 1 file changed, 165 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..9ac9dbb
--- /dev/null
+++ b/ASP-IICS-Team/GetExternalCustomers/getExternalCustomers.json
@@ -0,0 +1,165 @@
+{
+  "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##data##attributes" : {
+      "properties" : {
+        "active" : {
+          "type" : "boolean"
+        },
+        "address" : {
+          "type" : "string"
+        },
+        "name" : {
+          "type" : "string"
+        },
+        "status" : {
+          "type" : "string"
+        }
+      }
+    },
+    "getExternalCustomers##data##links" : {
+      "properties" : {
+        "self" : {
+          "type" : "string"
+        }
+      }
+    },
+    "getExternalCustomers##data##attributes##address" : {
+      "properties" : {
+        "address_id" : {
+          "type" : "string"
+        },
+        "address_line_1" : {
+          "type" : "string"
+        },
+        "address_line_2" : {
+          "type" : "string"
+        },
+        "address_line_3" : {
+          "type" : "string"
+        },
+        "address_usage" : {
+          "type" : "string"
+        },
+        "city" : {
+          "type" : "string"
+        },
+        "country_code" : {
+          "type" : "string"
+        },
+        "id" : {
+          "type" : "string"
+        },
+        "state_code" : {
+          "type" : "string"
+        },
+        "zip_code" : {
+          "type" : "string"
+        }
+      }
+    },
+    "getExternalCustomers##data" : {
+      "properties" : {
+        "attributes" : {
+          "$ref" : "#/definitions/getExternalCustomers##data##attributes"
+        },
+        "id" : {
+          "type" : "string"
+        },
+        "links" : {
+          "$ref" : "#/definitions/getExternalCustomers##data##links"
+        },
+        "type" : {
+          "type" : "string"
+        }
+      }
+    },
+    "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" : "array",
+          "items" : {
+            "$ref" : "#/definitions/getExternalCustomers##data"
+          }
+        },
+        "links" : {
+          "$ref" : "#/definitions/getExternalCustomers##links"
+        },
+        "meta" : {
+          "$ref" : "#/definitions/getExternalCustomers##meta"
+        }
+      }
+    }
+  }
+}
\ No newline at end of file
-- 
GitLab