action threatjammer_query_status_names_v1_asn_status_all_get { label: "Get the list of status of an object in a registry." description: "### What\nObtain the list of status of an object can be in a registry.\n\n### Parameters\nNo parameters are required.\n\n### Result\nThe result is a JSON object with a list of the following JSON objects:\n- ``self``: the URI to individual status.\n- ``name``: the code name.\n- ``code``: the internal code of the status in the system. Possible values are: assigned, reserved, allocated, available.\n\n### Errors\nIt will return the API Global errors described in the API description." provider: threatjammer method: GET path: "/v1/asn/status/all" encoding: json output: { type: "array" items: { type: "object" description: "The Status information" required: ["code", "name", "self"] properties: { code: { type: "string" } name: { type: "string" } self: { type: "string" } } } } }