UpdateOrganizationOtpPolicyRequest
Properties
| Property | Type | Required | Description |
|---|---|---|---|
default_verification_ttl |
OrganizationOtpVerificationTtl | Yes | |
enabled_scopes |
Array<OrganizationOtpScope> | No | |
ttl_overrides |
Array<OrganizationOtpScopePolicy> | No |
View JSON Schema
{
"type": "object",
"required": [
"default_verification_ttl"
],
"properties": {
"default_verification_ttl": {
"$ref": "#/components/schemas/OrganizationOtpVerificationTtl"
},
"enabled_scopes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrganizationOtpScope"
}
},
"ttl_overrides": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OrganizationOtpScopePolicy"
}
}
}
}