action threatjammer_query_registry_by_the_name_v1_asn_registry_code_get { label: "Get the information of a Regional Internet Registries (RIRs) given." description: "### What\nObtain the information about the Regional Internet Registries (RIRs) given as a parameter.\n\n### Parameters\nThe endpoint accepts only the following parameter in the path:\n- ``code``: (Mandatory) The code that identifies uniquely the RIR. Possible values are: iana, arin, ripencc, afrinic, apnic, lacnic.\n\n### Result\nThe result is a JSON object with the following structure:\n- ``self``: the URI to individual RIR.\n- ``name``: the RIR name.\n- ``code``: the internal code of the RIR 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/asn/registry/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" enum: ["iana", "arin", "ripencc", "afrinic", "apnic", "lacnic"] } } required: ["code"] additionalProperties: false } output: { type: "object" description: "The Registry information" required: ["code", "name", "self"] properties: { code: { type: "string" } name: { type: "string" } self: { type: "string" } } } }