Name | Type | Description | Required? |
---|---|---|---|
Data | Comment[] | Unavailable | 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:CreateComment xmlns:api1="http://api.phoenixplatform.com"> <api1:request> <tig:Id>1</tig:Id> <tig:ProjectId>1</tig:ProjectId> <tig:TopicId>1</tig:TopicId> <tig:ParentCommentId>1</tig:ParentCommentId> <tig:StatusTypeId>PreApproved</tig:StatusTypeId> <tig:PhoenixIdentity_UserId>1</tig:PhoenixIdentity_UserId> <tig:Text>TestValue[32747556c2a84eea9d896313a8189426]</tig:Text> <tig:Rating_Overall>1</tig:Rating_Overall> <tig:ModifyDate>2019-02-16T21:31:43.7247325+00:00</tig:ModifyDate> <tig:VoteCount_Overall>1</tig:VoteCount_Overall> <tig:Author>TestValue[f635584623d94695aae6891e7381270d]</tig:Author> </api1:request> </api1:CreateComment> </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> <ForumResponse xmlns="http://api.phoenixplatform.com"> <ForumResult 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.Forum.Model"> <b:Comment> <b:CreateDate>2019-02-16T21:31:43.7247325Z</b:CreateDate> <b:ModifyDate>2019-02-16T21:31:43.7247325Z</b:ModifyDate> <b:ProjectId>0</b:ProjectId> <b:Rating_Overall>0</b:Rating_Overall> <b:Text i:nil="true" /> <b:TopicId>0</b:TopicId> <b:VoteCount_Overall>0</b:VoteCount_Overall> </b:Comment> </b:Data> <TotalRecords xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services">1</TotalRecords> </ForumResult> </ForumResponse> </s:Body> </s:Envelope>
Sample Request
POST /projects/{projectId}/comments? HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json; charset=utf-8 Authorization: Bearer [YOUR SUPER SECURE TOKEN] Content-Length: 726 Host: [CallHost] Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5)- [{ "Id" : 1, "ProjectId" : 1, "TopicId" : 1, "ParentCommentId" : 1, "StatusTypeId" : "Pending", "PhoenixIdentity_UserId" : 1, "Text" : "TestValue[5029578e18c745a3b4113d26f9e3d0a9]", "Rating_Overall" : 1, "ModifyDate" : "2019-02-16T21:31:43.7247325+00:00", "VoteCount_Overall" : 1, "Author" : "TestValue[86095bd099d24204af2a262b039a335f]" }]
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, "TopicId": 0, "Text": null, "Rating_Overall": 0.0, "CreateDate": "2019-02-17T02:35:12.5902084Z", "ModifyDate": "2019-02-17T02:35:12.5902084Z", "VoteCount_Overall": 0 }]
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.PhoenixForum.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.IPhoenixForumService>(configuration); var response = proxy.Execute(request, o => o.CreateComment(new PhoenixService.CreateCommentRequest() { Data = new[] { new PhoenixService.Comment() { Id = 1, ProjectId = 1, TopicId = 1, ParentCommentId = 1, StatusTypeId = PhoenixService.StatusTypeEnum.PreApproved, PhoenixIdentity_UserId = 1, Text = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Rating_Overall = 1, ModifyDate = DateTime.UtcNow, VoteCount_Overall = 1, Author = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]" } } }));