This repository was archived by the owner on Nov 22, 2024. It is now read-only.
Commit dd6d802
authored
typo in cloudflare.py
fixed ability to add email-fwdr
here's my code if anyone wants to add an email request validation:
```python
cf = CloudFlare(email=CLOUDFLARE_EMAIL, token=CLOUDFLARE_TOKEN)
cf.add('VOID', "accounts", "email-fwdr")
cf.add('AUTH', "accounts", "email-fwdr", "addresses")
data = json.dumps({"email": email})
cf.accounts.email_fwdr.addresses.post(CLOUDFLARE_ACCOUNT, data=data)
```1 parent 4c80399 commit dd6d802
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
826 | 826 | | |
827 | 827 | | |
828 | 828 | | |
829 | | - | |
| 829 | + | |
830 | 830 | | |
831 | 831 | | |
832 | 832 | | |
| |||
0 commit comments