action threatjammer_query_datacenter_v1_datacenter_datacenter_id_get { label: "Get the Datacenter details of datacente given." description: "### What\nObtain the details of the Datacenter ID passed as a parameter.\n\n### Parameters\nThe endpoint accepts only the following parameter in the path:\n- ``datacenter_id``: (Mandatory) The internal Datacenter ID to be queried.\n\n### Result\nThe result is a JSON object with the following structure:\n- ``self``: the URI of the API call\n- ``name``: the generic name of the Datacenter. The database takes the name from different sources, so it may be different from the real name.\n- ``description``: a full name of the Datacenter. It contains more details about the Datacenter.\n- ``source``: website of the company that owns the Datacenter.\n- ``asn``: the URI to the ASN of the Datacenter.\n- ``status``: the status of the Datacenter. It can be: `enabled` or `disabled`.\n- ``prefixes``: the URI to the list of prefixes that belong to the Datacenter.\n- ``score``: The risk score of the Datacenter. It ranges from 0 to 99.\n- ``risk``: The risk of the Datacenter. The allowed values are: LOW, MEDIUM, HIGH. It's a human readable representation of the score.\n\n\n### Errors\nThe endpoint will return the following errors:\n- a `404 Not Found` error if the Datacenter was not found.\n- a `422 Unprocessable Entity` error if the Datacenter is malformed.\n\nIt will also return the API Global errors described in the API description." provider: threatjammer method: GET path: "/v1/datacenter/{datacenter_id}" encoding: json input: { type: "object" properties: { datacenter_id: { type: "string" } } required: ["datacenter_id"] additionalProperties: false } output: { type: "object" required: ["asn", "name", "prefixes", "self", "source"] properties: { asn: { type: "string" } description: { type: "string" } name: { type: "string" } prefixes: { type: "string" } risk: { type: "string" enum: ["UNKNOWN", "LOW", "MEDIUM", "HIGH"] } score: { type: "integer" } self: { type: "string" } source: { type: "string" } status: { type: "string" enum: ["disabled", "enabled"] } } } }