From 6b01d7fcd3ec4dfcd32979685e55547eb5c1fc35 Mon Sep 17 00:00:00 2001 From: Rebecca Wheeler <rebecca.wheeler@wisc.edu> Date: Thu, 7 Nov 2024 09:53:35 -0600 Subject: [PATCH] Update file p_Get_Lookups.json --- EI-IICS-Team/12Twenty/p_Get_Lookups.json | 76 ++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 EI-IICS-Team/12Twenty/p_Get_Lookups.json diff --git a/EI-IICS-Team/12Twenty/p_Get_Lookups.json b/EI-IICS-Team/12Twenty/p_Get_Lookups.json new file mode 100644 index 0000000..8bebeae --- /dev/null +++ b/EI-IICS-Team/12Twenty/p_Get_Lookups.json @@ -0,0 +1,76 @@ +{ + "swagger" : "2.0", + "info" : { + "description" : null, + "version" : "1.0.0", + "title" : null, + "termsOfService" : null, + "contact" : null, + "license" : null + }, + "host" : "wisc.admin.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" : "Authorization", + "in" : "header", + "description" : null, + "required" : false, + "type" : "string" + }, { + "name" : "x-api-key", + "in" : "header", + "description" : null, + "required" : false, + "type" : "string" + }, { + "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