GET example/api/SmsRecipient/{id}
https://app.bwz.se/bedrock/example/api/SmsRecipient/{id}
Gets a SmsRecipient.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
The id of the desired SmsRecipient. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A SmsRecipientModel.
SmsRecipientModelName | Description | Type | Additional information |
---|---|---|---|
CreatedByUserId |
Id of the user which created the recipient |
integer |
None. |
CreationDate |
Gets or sets the creation date. |
date |
None. |
MobileNumber |
Gets or sets the mobile number. |
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:39.7624545+01:00", "MobileNumber": "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:
<SmsRecipientModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models.SmsRecipient"> <CreatedByUserId>1</CreatedByUserId> <CreationDate>2024-11-21T17:51:39.7624545+01:00</CreationDate> <Id>4</Id> <MobileNumber>sample string 3</MobileNumber> <Properties xmlns:d2p1="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models.MailRecipient"> <d2p1:PropertyValueModel> <d2p1:Name>sample string 1</d2p1:Name> <d2p1:Value /> </d2p1:PropertyValueModel> <d2p1:PropertyValueModel> <d2p1:Name>sample string 1</d2p1:Name> <d2p1:Value /> </d2p1:PropertyValueModel> </Properties> <RecipientEntrySource>sample string 5</RecipientEntrySource> </SmsRecipientModel>