Safe SPF endpoint

The Safe SPF endpoint allows one to update the original SPF record on a domain.

For example, you can call this endpoint to update the SPF record on exampledomain.com with something like:

v=spf1 include:bluehost.com -all

and DMARCLY will run it through the Safe SPF process and update the Safe SPF record accordingly.

update_safe_spf

PUT /update_safe_spf

Description: Update original SPF record on domain.

Parameters:

Parameter Description
domain domain the SPF record is on
original original SPF record

Response:

{
    "status":"SUCCESS"
}

Example:

curl -X PUT -H "Authorization: Bearer 19811e9fedbabdc42519db98bc289fb1" -d domain=ahaleads.com -d original="v=spf1 include:bluehost.com -all" "https://dmarcly.com/api/update_safe_spf"