You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### What's Changed
---
##### `GET` /policies/geoip/{policy_uuid}/
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Changed property `countries` (array)
##### `PUT` /policies/geoip/{policy_uuid}/
###### Request:
Changed content type : `application/json`
* Changed property `countries` (array)
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Changed property `countries` (array)
##### `PATCH` /policies/geoip/{policy_uuid}/
###### Request:
Changed content type : `application/json`
* Changed property `countries` (array)
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Changed property `countries` (array)
##### `POST` /policies/geoip/
###### Request:
Changed content type : `application/json`
* Changed property `countries` (array)
###### Return Type:
Changed response : **201 Created**
* Changed content type : `application/json`
* Changed property `countries` (array)
##### `GET` /policies/geoip/
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Changed property `results` (array)
Changed items (object):
> GeoIP Policy Serializer
* Changed property `countries` (array)
##### `GET` /stages/email/{stage_uuid}/
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
##### `PUT` /stages/email/{stage_uuid}/
###### Request:
Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
##### `PATCH` /stages/email/{stage_uuid}/
###### Request:
Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
##### `POST` /stages/email/
###### Request:
Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
###### Return Type:
Changed response : **201 Created**
* Changed content type : `application/json`
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
##### `GET` /stages/email/
###### Return Type:
Changed response : **200 OK**
* Changed content type : `application/json`
* Changed property `results` (array)
Changed items (object):
> EmailStage Serializer
* Added property `recovery_max_attempts` (integer)
* Added property `recovery_cache_timeout` (string)
> The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3).
/** The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). */
/** The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). */
/** When enabled, global Email connection settings will be used and connection settings below will be ignored. */
@@ -36,8 +38,11 @@ public struct PatchedEmailStageRequest: Sendable, Codable, ParameterConvertible,
36
38
publicvartemplate:String?
37
39
/** Activate users upon completion of stage. */
38
40
publicvaractivateUserOnSuccess:Bool?
41
+
publicvarrecoveryMaxAttempts:Int?
42
+
/** The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). */
Copy file name to clipboardExpand all lines: docs/EmailStage.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,8 @@ Name | Type | Description | Notes
22
22
**subject** | **String** | | [optional]
23
23
**template** | **String** | | [optional]
24
24
**activateUserOnSuccess** | **Bool** | Activate users upon completion of stage. | [optional]
25
+
**recoveryMaxAttempts** | **Int** | | [optional]
26
+
**recoveryCacheTimeout** | **String** | The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). | [optional]
25
27
26
28
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/EmailStageRequest.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ Name | Type | Description | Notes
18
18
**subject** | **String** | | [optional]
19
19
**template** | **String** | | [optional]
20
20
**activateUserOnSuccess** | **Bool** | Activate users upon completion of stage. | [optional]
21
+
**recoveryMaxAttempts** | **Int** | | [optional]
22
+
**recoveryCacheTimeout** | **String** | The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). | [optional]
21
23
22
24
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/PatchedEmailStageRequest.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ Name | Type | Description | Notes
18
18
**subject** | **String** | | [optional]
19
19
**template** | **String** | | [optional]
20
20
**activateUserOnSuccess** | **Bool** | Activate users upon completion of stage. | [optional]
21
+
**recoveryMaxAttempts** | **Int** | | [optional]
22
+
**recoveryCacheTimeout** | **String** | The time window used to count recent account recovery attempts. If the number of attempts exceed recovery_max_attempts within this period, further attempts will be rate-limited. (Format: hours=1;minutes=2;seconds=3). | [optional]
21
23
22
24
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments