Link

Update Deployment

Method URL POST http://<report_container_url>:<container_port>/report/v1/deployment/<deployment_id>
HTTP Method POST
Content Type application/json

Request Arguments

Required Arguments Data Type How To Use
NONE    
Optional Arguments Data Type How to Use
email string Email of primary contact for this Customer
ingest_limit integer Ingest limit in Bytes per day
slack_webhook string Per customer Slack webhook for incident notifications
gpt3 boolean Enable GPT summaries in RC reports

Example Request Payload

{
  "email": "wiley@acme.com",
  "ingest_limit": 50000000000,
  "slack_webhook": "https://hooks.slack.com/services/webhook"
}

Example Response Payload

{
  "data": {
    "ingest_limit": 50000000000,
    "email": "wiley@acme.com",
    "slack_webhook": "https://hooks.slack.com/services/webhook",
    "deployment_id" : "acme_trial"
  },
  "error": {
    "code": 200,
    "message": "200 OK"
  }
}