Skip to content

validateAndSaveCustomerKmsInfo

Validate KMS input provided on O365 subscription setup.

Arguments

Argument Type Description
input (required) ValidateAndSaveCustomerKmsInfoInput! KMS details to be validated.

Returns

ValidateAndSaveCustomerKmsInfoReply!

Sample

mutation ValidateAndSaveCustomerKmsInfo($input: ValidateAndSaveCustomerKmsInfoInput!) {
  validateAndSaveCustomerKmsInfo(input: $input) {
    errorMessage
    inputFieldName
  }
}
{
  "input": {
    "appSecret": "example-string"
  }
}
{
  "data": {
    "validateAndSaveCustomerKmsInfo": {
      "errorMessage": "example-string",
      "inputFieldName": "example-string"
    }
  }
}