GET example/api/MailRecipient?email={email}
https://app.bwz.se/bedrock/example/api/MailRecipient?email={email}
Gets MailRecipients based on an email address.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
The email address identifying the MailRecipients. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
An array of MailRecipientModels.
Collection of MailRecipientModelName | Description | Type | Additional information |
---|---|---|---|
CreatedByUserId |
Id of the user which created the recipient |
integer |
None. |
CreationDate |
Gets or sets the creation date. |
date |
None. |
Gets or sets the email. |
string |
None. |
|
Id |
Gets or sets the identifier. |
integer |
None. |
RecipientEntrySource |
Gets or sets the recipient entry source. |
string |
None. |
Properties |
Gets or sets the properties. |
Collection of PropertyValueModel |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CreatedByUserId": 1, "CreationDate": "2024-11-21T17:51:03.0591186+01:00", "Email": "sample string 3", "Id": 4, "RecipientEntrySource": "sample string 5", "Properties": [ { "Name": "sample string 1", "Value": {} }, { "Name": "sample string 1", "Value": {} } ] }, { "CreatedByUserId": 1, "CreationDate": "2024-11-21T17:51:03.0591186+01:00", "Email": "sample string 3", "Id": 4, "RecipientEntrySource": "sample string 5", "Properties": [ { "Name": "sample string 1", "Value": {} }, { "Name": "sample string 1", "Value": {} } ] } ]
application/xml, text/xml
Sample:
<ArrayOfMailRecipientModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models.MailRecipient"> <MailRecipientModel> <CreatedByUserId>1</CreatedByUserId> <CreationDate>2024-11-21T17:51:03.0591186+01:00</CreationDate> <Email>sample string 3</Email> <Id>4</Id> <Properties> <PropertyValueModel> <Name>sample string 1</Name> <Value /> </PropertyValueModel> <PropertyValueModel> <Name>sample string 1</Name> <Value /> </PropertyValueModel> </Properties> <RecipientEntrySource>sample string 5</RecipientEntrySource> </MailRecipientModel> <MailRecipientModel> <CreatedByUserId>1</CreatedByUserId> <CreationDate>2024-11-21T17:51:03.0591186+01:00</CreationDate> <Email>sample string 3</Email> <Id>4</Id> <Properties> <PropertyValueModel> <Name>sample string 1</Name> <Value /> </PropertyValueModel> <PropertyValueModel> <Name>sample string 1</Name> <Value /> </PropertyValueModel> </Properties> <RecipientEntrySource>sample string 5</RecipientEntrySource> </MailRecipientModel> </ArrayOfMailRecipientModel>