-
Notifications
You must be signed in to change notification settings - Fork 33
Domains
Igor Balos edited this page Oct 29, 2018
·
1 revision
With API client you can easily manage all your account domains. Check out the examples of some of the API requests you can do with the library.
For these API requests you will need to use a account API token. Once you obtain it, you will need to use account API client.
let postmark = require("postmark")
const accountToken = "xxxx-xxxxx-xxxx-xxxxx-xxxxxx"
let accountClient = new postmark.AccountClient(accountToken);
accountClient.getDomains().then(result => {
console.log(result);
});
accountClient.getDomainDetails(12345).then( result => {
console.log(result);
});
accountClient.createDomain({Name: "example.com"}).then( result => {
console.log(result);
});```
## Trigger DKIM verification for your domain
``` javascript
accountClient.verifyDomainDKIM(12345).then( result => {
console.log(result);
});
accountClient.verifyDomainReturnPath(12345).then( result => {
console.log(result);
});
accountClient.rotateDomainDKIM(12345).then( result => {
console.log(result);
});
accountClient.deleteDomain(12345).then( result => {
console.log(result);
});
For additional information about the capabilities of the Postmark API, see Postmark Developers Documentation.
- Overview
- Migration from older version
- Getting started
- Email sending
- Bounces
- Templates
- Templates Push
- Server
- Servers
- Message Streams
- Webhooks
- Messages
- Domains
- Sender Signatures
- Stats
- Trigger Inbound Rules
- Suppressions
- Data Removal
- Embedding images in emails
- Error Handling
- Handling Web Hooks
- Mocking requests
- Troubleshooting
- Known issues and how to resolve them