action threatjammer_query_origin_status_details_v1_origin_status_details_get { label: "Get the list of different status available in the platform." description: "### What\nObtain the full list and description of the different status available in the platform.\n\n### Parameters\nNo parameters needed.\n\n### Result\nThe result is a JSON list with the following fields:\n- ``self``: the URI to the request to obtain the list.\n- ``list``: a JSON list with the following elements each one with the following fields:\n - ``self``: the URI to the status detail.\n - ``description``: a human readable description of the status.\n - ``cardinality``: The number describing the cardinality of the status.\n\n### Errors\nIt will return the API Global errors described in the API description." provider: threatjammer method: GET path: "/v1/origin/status/details" encoding: json output: { type: "object" required: ["list", "self"] properties: { list: { type: "array" items: { type: "object" required: ["self", "status", "description", "cardinality"] properties: { cardinality: { type: "integer" } description: { type: "string" } self: { type: "string" } status: { type: "string" } } } } self: { type: "string" } } } }