POST | /messages/sendemailtocompany | Send email to company with id or sitepath | This is used by the homepage to send emails to the company |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CompanyId | body | Guid? | No | The company id, if empty you will need to provide the sitepath instead. |
MessageTitle | body | string | No | Message Title. |
MessageBody | body | string | No | Message Body. |
Name | body | string | No | Message Sender Name. |
body | string | No | Message Sender Email. | |
Phone | body | string | No | Message Sender Phone Number. |
SitePath | body | string | No | The homeage sitepath. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | int | No | The message log id |
BookingId | form | int? | No | The booking id for the message (if connected to a booking). |
Receiver | form | string | No | The message receiver. Either a email or a mobile phone number. |
MessageTitle | form | string | No | Message Title. |
StorageUrl | form | string | No | Message Storage Url. |
MessageBody | form | string | No | Message Body. |
Created | form | DateTime | No | When message was created. |
ToSendDate | form | DateTime | No | When the message will be sent. |
SentDate | form | DateTime? | No | When the message was sent. |
Sent | form | bool | No | If Message is sent |
MessageRetries | form | int | No | Number of retries to send the message |
SendMethodId | form | int | No | Send Method. 1 = Email, 2 = SMS |
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /messages/sendemailtocompany HTTP/1.1
Host: api.bokamera.se
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","MessageTitle":"String","MessageBody":"String","Name":"String","Email":"String","Phone":"String","SitePath":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"Id":0,"BookingId":0,"Receiver":"String","MessageTitle":"String","StorageUrl":"String","MessageBody":"String","SentDate":"0001-01-01T00:00:00","Sent":false,"MessageRetries":0,"SendMethodId":0}