Salesforce · Schema

ForgotPassword-ChangePasswordRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
username string
newpassword string
otp string
View JSON Schema on GitHub

JSON Schema

salesforce-forgot-password-change-password-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "example": "example_value"
    },
    "newpassword": {
      "type": "string",
      "example": "example_value"
    },
    "otp": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "username",
    "newpassword",
    "otp"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ForgotPassword-ChangePasswordRequest"
}