ScreenMeetTest logoScreenMeetTest documentationAPI referencescreenmeettest
API reference
DELETE/configuration/organization.{organization_numeric_id}.ai.summary

Reset AI summary configuration for an organization

Reset the AI summary configuration for the given organization back to its default value. This sets `summary_workflow` back to `dont-generate`, which disables AI summarization at the end of a session. > **Entitlement required:** The AI summary feature only works when the > AI+ (`aiplus`) entitlement is enabled for the organization's customer.

Authorization

bearerAuth http (bearer)

Parameters

organization_numeric_id (path) Required

Numeric Id of the organization

number

Responses

200

OK

application/json
object
messagestring

string
successboolean

boolean
{
  "Success": {
    "value": {
      "message": "Configuration data reset.",
      "success": true
    }
  }
}
403

Authorization Problem - either the JWT is malformed or the signature is bad, or permission is denied

application/json
object
codenumber

number
refcodenumber

number
descriptionstring

string
X-Request-Idstring

string
{
  "PermissionDenied": {
    "value": {
      "code": 403,
      "refcode": 200403,
      "description": "Authorization token is invalid: Error request id: 1-62ed207a-24baa293558168e06b8402c3 [8/5/2022, 6:51:54 AM PST]",
      "X-Request-Id": "1-62ed207a-24baa293558168e06b8402c3"
    }
  },
  "MalformedJWTOrBadSignature": {
    "value": {
      "code": 403,
      "refcode": 200403,
      "description": "Authorization token is invalid: JsonWebTokenError request id: 1-62ed1a55-0265e424598b4f1b580bd784 [8/5/2022, 6:25:41 AM PST]",
      "X-Request-Id": "1-62ed1a55-0265e424598b4f1b580bd784"
    }
  }
}