POST example/api/transactionmail/createcalendarlink
https://app.bwz.se/bedrock/example/api/transactionmail/createcalendarlink
Creates a calendar link
Request Information
URI Parameters
None.
Body Parameters
Url for the event
CreateCalendarLinkArgsName | Description | Type | Additional information |
---|---|---|---|
Summary |
Sets the summary. |
string |
None. |
Description |
Sets the description. |
string |
None. |
Location |
Location of the event |
string |
None. |
ReminderBeforeEventMinutes |
Amount of minutes before the event that the reminder should occur |
integer |
None. |
StartDate |
Start date of the event |
date |
Required |
EndDate |
End date of the event |
date |
Required |
Url |
Url for the event |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Summary": "sample string 1", "Description": "sample string 2", "Location": "sample string 3", "ReminderBeforeEventMinutes": 4, "StartDate": "2024-11-24T01:25:02.3262402+01:00", "EndDate": "2024-11-24T01:25:02.3262402+01:00", "Url": "sample string 5" }
application/xml, text/xml
Sample:
<CreateCalendarLinkArgs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netoptions.BizWizard.Api.Common.Models.TransactionMail"> <Description>sample string 2</Description> <EndDate>2024-11-24T01:25:02.3262402+01:00</EndDate> <Location>sample string 3</Location> <ReminderBeforeEventMinutes>4</ReminderBeforeEventMinutes> <StartDate>2024-11-24T01:25:02.3262402+01:00</StartDate> <Summary>sample string 1</Summary> <Url>sample string 5</Url> </CreateCalendarLinkArgs>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The created calendar link
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>