GET
/
deployments
/
get-deployment
curl --request GET \
  --url https://api.enkryptai.com/deployments/get-deployment \
  --header 'X-Enkrypt-Deployment: <x-enkrypt-deployment>' \
  --header 'apikey: <api-key>'
{
  "name": "test-deployment",
  "model_saved_name": "Test Model",
  "input_guardrails_policy": {
    "additional_config": {
      "pii_redaction": true
    },
    "block": [
      "topic_detector",
      "nsfw",
      "toxicity",
      "pii",
      "injection_attack",
      "keyword_detector",
      "system_prompt",
      "policy_violation",
      "bias",
      "copyright_ip"
    ],
    "policy_name": "test-input",
    "enabled": true
  },
  "output_guardrails_policy": {
    "additional_config": {
      "relevancy": false,
      "hallucination": false,
      "adherence": false
    },
    "block": [
      "topic_detector",
      "nsfw",
      "toxicity",
      "pii",
      "injection_attack",
      "keyword_detector",
      "system_prompt",
      "policy_violation",
      "bias",
      "copyright_ip",
      "hallucination",
      "adherence",
      "relevancy"
    ],
    "policy_name": "test-output",
    "enabled": true
  },
  "updated_at": "2024-12-23T04:43:59.005032+00:00",
  "deployment_id": 1234567890,
  "created_at": "2024-12-23T04:43:59.005032+00:00"
}

Authorizations

apikey
string
header
required

Headers

X-Enkrypt-Deployment
string
required

The deployment saved name. E.g. test-deployment-1

Example:

"test-deployment"

X-Enkrypt-Refresh-Cache
boolean

Refresh the cache if data is stale

Example:

false

Response

200 - application/json
Successful Response
name
string
required

Name of the deployment

Example:

"test-deployment"

model_saved_name
string
required

Name of the saved model to use

Example:

"Test Model"

input_guardrails_policy
object
required
output_guardrails_policy
object
required
deployment_id
integer
Example:

1234567890

created_at
string
Example:

"2024-10-15T17:22:47.872389+00:00"

updated_at
string
Example:

"2024-10-15T17:22:47.872389+00:00"

project_name
string
Example:

"default"