Name | Type | Description | Required? |
---|---|---|---|
Data | Message[] | Unavailable | Not Required |
Expand | System.String[] | Unavailable | Not Required |
ProjectId | System.Int32 | Unavailable | Required |
ProjectId | System.Int32 | Unavailable | Required |
Name | Type | Description | Required? | ProjectId | System.Int32 | Id | Required |
---|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.phoenixplatform.net" xmlns:tig="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:tig1="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services.Filters"> <soapenv:Header> <PhoenixHeader xmlns="http://api.phoenixplatform.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <AccessToken>[YOUR ACCESS TOKEN]</AccessToken> <Phoenix-ProjectId>1</Phoenix-ProjectId> </PhoenixHeader> </soapenv:Header> <soapenv:Body> <api1:UpdateMessage xmlns:api1="http://api.phoenixplatform.com"> <api1:request> <tig:Id>1</tig:Id> <tig:ProjectId>1</tig:ProjectId> <tig:AccountId>1</tig:AccountId> <tig:MessageTypeId>WindowsPushNotification</tig:MessageTypeId> <tig:DirectionTypeId>Outbound</tig:DirectionTypeId> <tig:SenderAddress>TestValue[ee52ea159c03461486269f3714e3a0c8]</tig:SenderAddress> <tig:StatusTypeId>Success</tig:StatusTypeId> <tig:StatusDesc>TestValue[bccf6cd99eb24b3586759a461f310163]</tig:StatusDesc> <tig:ProcessDate>2021-01-27T09:30:44.8755963+00:00</tig:ProcessDate> <tig:Location>POINT(-157.7964 21.3114)</tig:Location> <tig:Payload>TestValue[83a6882f708f4f1ea073bcf5b9ece438]</tig:Payload> <tig:ExpectedRecipientCount>1</tig:ExpectedRecipientCount> <tig:Subject>TestValue[6460d6ee33ad4cb6bb3eac12d52d25c0]</tig:Subject> <tig:ModifyDate>2021-01-27T09:30:44.8755963+00:00</tig:ModifyDate> </api1:request> </api1:UpdateMessage> </soapenv:Body> </soapenv:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Header> <ActivityId CorrelationId="d088e8c6-bf1e-4a9d-9e96-3f5faf232af5" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">17abb643-6b2f-4485-b4ff-0afc30697b7d</ActivityId> </s:Header> <s:Body> <MessagingResponse xmlns="http://api.phoenixplatform.com"> <MessagingResult xmlns:a="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Syndicate.Services.Contracts.Article" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <b:Data xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services" xmlns:b="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Messaging.Model"> <b:Message> <b:AccountId>0</b:AccountId> <b:CreateDate>2021-01-27T09:30:44.8755963Z</b:CreateDate> <b:ModifyDate>2021-01-27T09:30:44.8755963Z</b:ModifyDate> <b:ProjectId>0</b:ProjectId> <b:RecipientCount>0</b:RecipientCount> <b:Recipients /> </b:Message> </b:Data> <TotalRecords xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services">1</TotalRecords> </MessagingResult> </MessagingResponse> </s:Body> </s:Envelope>
Sample Request
POST ? HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json; charset=utf-8 Authorization: Bearer [YOUR SUPER SECURE TOKEN] Content-Length: 1184 Host: [CallHost] Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5)- [{ "Id" : 1, "ProjectId" : 1, "AccountId" : 1, "MessageTypeId" : "Email", "DirectionTypeId" : "Outbound", "SenderAddress" : "TestValue[f08228a65c224f3aac4269f64ec51124]", "StatusTypeId" : "PartialSuccess", "StatusDesc" : "TestValue[1c686fc22430497f91699b6d785ecbcb]", "ProcessDate" : "2021-01-27T09:30:44.8755963+00:00", "Location" : "POINT(-157.7964 21.3114)", "Payload" : "TestValue[f50b8001bee9477d81ce26009e5d5f8d]", "ExpectedRecipientCount" : 1, "Subject" : "TestValue[07a880ffb29043d4b0495de88f637a4c]", "ModifyDate" : "2021-01-27T09:30:44.8755963+00:00" }]
HTTP/1.1 200 OK Cache-Control: private Content-Length: 200 Content-Type: application/json; charset=utf-8 Server: Microsoft-IIS/8.5 X-AspNet-Version: 4.0.30319 Access-Control-Allow-Origin: * Access-Control-Allow-Methods: GET,PUT,POST,DELETE,OPTIONS Access-Control-Allow-Headers: Content-Type [{ "ProjectId": 0, "AccountId": 0, "RecipientCount": 0, "CreateDate": "2021-01-27T10:23:14.8392042Z", "ModifyDate": "2021-01-27T10:23:14.8392042Z", "Recipients": [] }]
Nuget
PM> Install-Package PhoenixServiceHelper
PhoenixServiceHelper Sample
using System; using System.Collections.Generic; using Tigerspike.Phoenix.Services.Api.ServiceConfiguration; using Tigerspike.Phoenix.Services.Api.ServiceRequest; using PhoenixService = Tigerspike.PhoenixMessaging.V1; using Tigerspike.Phoenix.Services.Api; var request = new SoapServiceRequest() { Token = "[YOUR SUPER SECURE TOKEN]", ProjectId = 1 }; var configuration = CustomConfigurationFactory.CreateServiceConfiguration(Assembly.GetExecutingAssembly()); var proxy = new PhoenixServiceHelper<PhoenixService.IPhoenixMessagingService>(configuration); var response = proxy.Execute(request, o => o.UpdateMessage(new PhoenixService.UpdateMessageRequest() { Data = new[] { new PhoenixService.Message() { Id = 1, ProjectId = 1, AccountId = 1, MessageTypeId = PhoenixService.MessageTypeEnum.WindowsPushNotification, DirectionTypeId = PhoenixService.DirectionTypeEnum.Outbound, SenderAddress = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", StatusTypeId = PhoenixService.StatusTypeEnum.Success, StatusDesc = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ProcessDate = DateTime.UtcNow, Location = new PhoenixService.DbGeography() { Geography = new PhoenixService.DbGeographyWellKnownValue() { WellKnownText = "POINT(POINT(-157.7964 21.3114))"}}, Payload = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ExpectedRecipientCount = 1, Subject = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ModifyDate = DateTime.UtcNow } } }));