From 362f7047720c1933f92d53e4ad95cee935078bf2 Mon Sep 17 00:00:00 2001 From: Rebecca Wheeler <rebecca.wheeler@wisc.edu> Date: Wed, 6 Nov 2024 12:54:25 -0600 Subject: [PATCH] Update file Get_Lookups.json --- EI-IICS-Team/12Twenty/Get_Lookups.json | 71 ++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 EI-IICS-Team/12Twenty/Get_Lookups.json diff --git a/EI-IICS-Team/12Twenty/Get_Lookups.json b/EI-IICS-Team/12Twenty/Get_Lookups.json new file mode 100644 index 0000000..691709f --- /dev/null +++ b/EI-IICS-Team/12Twenty/Get_Lookups.json @@ -0,0 +1,71 @@ +{ + "swagger" : "2.0", + "info" : { + "description" : null, + "version" : "1.0.0", + "title" : null, + "termsOfService" : null, + "contact" : null, + "license" : null + }, + "host" : "wisc.admin.sandbox-12twenty.com", + "basePath" : "/api/V2/lookups", + "schemes" : [ "https" ], + "paths" : { + "/{id}/options" : { + "get" : { + "tags" : [ "Get_Lookups" ], + "summary" : null, + "description" : null, + "operationId" : "Get_Lookups", + "produces" : [ "application/json" ], + "consumes" : [ "application/json" ], + "parameters" : [ { + "name" : "id", + "in" : "query", + "description" : null, + "required" : false, + "type" : "number", + "format" : "int32" + }, { + "name" : "id", + "in" : "path", + "description" : null, + "required" : false, + "type" : "string" + } ], + "responses" : { + "200" : { + "description" : "successful operation", + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/definitions/Get_Lookups" + } + } + } + } + } + } + }, + "definitions" : { + "Get_Lookups" : { + "properties" : { + "Id" : { + "type" : "number", + "format" : "int64" + }, + "Name" : { + "type" : "string" + }, + "DisplayIndex" : { + "type" : "number", + "format" : "int32" + }, + "Group" : { + "type" : "string" + } + } + } + } +} \ No newline at end of file -- GitLab