QuarantinedRegistrationService¶
- class QuarantinedRegistrationService[source]¶
- accept(json_body, *, quarantined_registration_id)[source]¶
Accept quarantined registrations.
- Parameters:
json_body (
AcceptQuarantinedRegistrationData) – The body of the request. SeeAcceptQuarantinedRegistrationDatafor information about the possible fields. You can provide this data as aAcceptQuarantinedRegistrationDataor as a dictionary.quarantined_registration_id (
str) – Registration id to accept.
- Returns:
An empty response with return code 204
- Return type:
None
- archive(json_body)[source]¶
Archive all active quarantined registrations for an email address.
This clears duplicate signups from the board without notifying the user. Every active registration for the email is archived, not just a single row, because duplicates may span multiple pages of the list.
- Parameters:
json_body (
ArchiveQuarantinedRegistrationData) – The body of the request. SeeArchiveQuarantinedRegistrationDatafor information about the possible fields. You can provide this data as aArchiveQuarantinedRegistrationDataor as a dictionary.
- Returns:
An empty response with return code 204
- Return type:
None
- deny(json_body, *, quarantined_registration_id)[source]¶
Deny quarantined registrations.
- Parameters:
json_body (
DenyQuarantinedRegistrationData) – The body of the request. SeeDenyQuarantinedRegistrationDatafor information about the possible fields. You can provide this data as aDenyQuarantinedRegistrationDataor as a dictionary.quarantined_registration_id (
str) – Registration id to accept.
- Returns:
An empty response with return code 204
- Return type:
None
- get_all(*, is_archived=False, page_size=25)[source]¶
List quarantined registrations.
- Parameters:
- Returns:
Paginated list of quarantined registrations.
- Return type:
Response[QuarantinedRegistration]