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" : [ {
"name" : "Authorization",
"in" : "header",
"description" : null,
"required" : false,
"type" : "string"
}, {
"name" : "x-api-key",
"in" : "header",
"description" : null,
"required" : false,
"type" : "string"
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
}, {
"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"
}
}
}
}
}