Actions25
Overview
This node integrates with the Resend API to manage email-related resources such as emails, domains, API keys, broadcasts, audiences, and contacts. Specifically for the Domain - Verify operation, it allows users to verify a domain by its ID through the Resend service. This is useful in scenarios where you need to confirm that a domain is properly set up and authorized for sending emails via Resend.
Practical example: After adding a new domain to your Resend account, you can use this node to trigger the verification process, ensuring the domain is ready for sending emails.
Properties
| Name | Meaning |
|---|---|
| Domain ID | The unique identifier of the domain you want to verify. Example: 4dd369bc-aa82-4ff3-97de-514ae3000ee0 |
Output
The output JSON contains the response from the Resend API after attempting to verify the specified domain. It typically includes details about the verification status or any relevant metadata returned by the API.
Example output structure (simplified):
{
"id": "4dd369bc-aa82-4ff3-97de-514ae3000ee0",
"name": "example.com",
"verified": true,
"verification_details": {
"dns_records": [...],
"status": "verified"
}
}
No binary data is produced by this operation.
Dependencies
- Requires an active API key credential for the Resend API.
- The node makes HTTP requests to
https://api.resend.com/domains/{domainId}/verifyendpoint. - Ensure the API key has permissions to manage domains and perform verification.
Troubleshooting
Common issues:
- Invalid or expired API key: The request will fail authentication.
- Incorrect Domain ID: If the domain ID does not exist or is malformed, the API will return an error.
- Network connectivity problems may cause request failures.
Error messages:
"Unauthorized"or"Invalid API key": Check that the API key credential is correctly configured and valid."Domain not found": Verify that the Domain ID is correct and exists in your Resend account."Verification failed": The domain might not be properly configured (e.g., DNS records missing). Review domain setup according to Resend's documentation.