Skip to main content

Sender list

Api call to subrite to get the email sender list

  • Method: GET
  • Route: {baseUrl}/api/v1/communications/email/senders
  • Authorization: Bearer token (use the m2m token collected in ## configuration)

Success API Response :

[
{
id: 1,
createdAt: '2024-11-18T11:54:11.356Z',
metaData: null,
senderName: 'sender-name1',
senderEmail: '[email protected]',
replyTo: null,
communicationChannel: 'email',
},
{
id: 2,
createdAt: '2024-11-18T11:54:11.356Z',
metaData: null,
senderName: 'sender-name2',
senderEmail: '[email protected]',
replyTo: null,
communicationChannel: 'email',
},
];