action threatjammer_query_os_by_code_v1_ua_os_code_get { label: "Get the information of the Operating System of a user agent." description: "### What\nObtain the details of the Operating System of a User Agent.\n\n### Parameters\nThe endpoint accepts only the following parameter in the path:\n- ``code``: (Mandatory) The code that identifies uniquely the Operating System at the origin of a User Agent. The value must be an alphanumeric upper case string.\n\n\n### Result\nThe result is a JSON object with the following structure:\n- ``self``: the URI to the OS.\n- ``description``: the human readable description of the OS.\n- ``code``: the internal code of the OS in the system.\n- ``family``: the family of the OS.\n- ``vendor``: the vendor or manufacturer of the OS.\n\n### Errors\n- a `422 Unprocessable Entity` error if the code is not one of the available.\n\nIt will also return the API Global errors described in the API description." provider: threatjammer method: GET path: "/v1/ua/os/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" required: ["code", "description", "family", "vendor"] properties: { code: { type: "string" } description: { type: "string" } family: { type: "string" } vendor: { type: "string" } } } }