Skip to content
Snippets Groups Projects
Get_Lookups.json 1.72 KiB
Newer Older
{
  "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" : [ {
Rebecca Wheeler's avatar
Rebecca Wheeler committed
          "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"
        }
      }
    }
  }
}