boldsign
Version:
NodeJS client for boldsign
15 lines (12 loc) • 516 B
text/typescript
import { SenderIdentitiesApi } from '../api/senderIdentitiesApi';
const senderIdentitiesApi = new SenderIdentitiesApi();
senderIdentitiesApi.setApiKey("YOUR_API_KEY");
async function SenderIdentityProperties() {
try {
var result = await senderIdentitiesApi.getSenderIdentityProperties("SENDER_IDENTITY_ID");
console.log("Sender identity properties", result);
} catch (error:any) {
console.error("Error occurred while calling the API:", error.message);
}
}
SenderIdentityProperties();