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();