action threatjammer_query_origin_status_detail_v1_origin_status_detail_status_id_get { label: "Get detail of a status available in the platform." description: "### What\nObtain the description of a status available in the platform.\n\n### Parameters\nA `status_id` parameter in the path of the request:\n- `PASS`\n- `BLOCK`\n- `CHALLENGE`\n- `BYPASS`\n- `IGNORE`\n\n### Result\nThe result is a JSON object 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\n- a `400 Bad Request` error if the origin status is not any of the available ones.\n\nIt will return the API Global errors described in the API description." provider: threatjammer method: GET path: "/v1/origin/status/detail/{status_id}" encoding: json input: { type: "object" properties: { status_id: { type: "string" description: "The status id to query the details" enum: ["pass", "block", "challenge", "bypass", "ignore"] } } required: ["status_id"] additionalProperties: false } output: { type: "object" required: ["cardinality", "description", "self", "status"] properties: { cardinality: { type: "integer" } description: { type: "string" } self: { type: "string" } status: { type: "string" } } } }