action threatjammer_query_family_by_code_v1_ua_family_code_get { label: "Get the information of the family of a user agent." description: "### What\nObtain the details of a family 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 family 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 family.\n- ``description``: the human readable description of the famly.\n- ``code``: the internal code of the family in the system.\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/family/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" required: ["code", "description"] properties: { code: { type: "string" } description: { type: "string" } } } }