Name | Type | Description | Required? |
---|---|---|---|
Data | EntrySet[] | 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:UpdateEntrySet xmlns:api1="http://api.phoenixplatform.com"> <api1:request> <tig:Id>1</tig:Id> <tig:ProjectId>1</tig:ProjectId> <tig:Name>TestValue[1f1103ef040f43e99570f5f5291ff7e8]</tig:Name> <tig:Description>TestValue[8c34bc0a3ed140bf92e7004fc5447fcc]</tig:Description> <tig:IsActive>true</tig:IsActive> <tig:IsEntryDeletable>true</tig:IsEntryDeletable> <tig:HasReference>true</tig:HasReference> <tig:CustomEditControl>TestValue[73a4c443ba4a4bdb85bca40a54b76664]</tig:CustomEditControl> <tig:ModifyDate>2021-01-17T20:54:17.9653797+00:00</tig:ModifyDate> </api1:request> </api1:UpdateEntrySet> </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> <DataCaptureResponse xmlns="http://api.phoenixplatform.com"> <DataCaptureResult 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.DataCapture.Model"> <b:EntrySet> <b:CreateDate>2021-01-17T20:54:17.9653797Z</b:CreateDate> <b:Entries /> <b:HasReference>false</b:HasReference> <b:IsActive>false</b:IsActive> <b:IsEntryDeletable>false</b:IsEntryDeletable> <b:ModifyDate>2021-01-17T20:54:17.9653797Z</b:ModifyDate> <b:Name i:nil="true" /> <b:ProjectId>0</b:ProjectId> </b:EntrySet> </b:Data> <TotalRecords xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services">1</TotalRecords> </DataCaptureResult> </DataCaptureResponse> </s:Body> </s:Envelope>
Sample Request
POST /projects/{projectid}/entrysets? HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json; charset=utf-8 Authorization: Bearer [YOUR SUPER SECURE TOKEN] Content-Length: 718 Host: [CallHost] Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5)- [{ "Id" : 1, "ProjectId" : 1, "Name" : "TestValue[136921fe126349f69c2997ea9a89933e]", "Description" : "TestValue[c01351d7a79a48569703639d66c01f27]", "IsActive" : true, "IsEntryDeletable" : true, "HasReference" : true, "CustomEditControl" : "TestValue[f1bddd5e2cfb4760b3a354b96fe9e3e9]", "ModifyDate" : "2021-01-17T20:54:17.9639930+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, "Name": null, "IsActive": false, "IsEntryDeletable": false, "HasReference": false, "CreateDate": "2021-01-17T21:06:37.2799322Z", "ModifyDate": "2021-01-17T21:06:37.2799322Z", "Entries": [] }]
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.PhoenixDataCapture.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.IPhoenixDataCaptureService>(configuration); var response = proxy.Execute(request, o => o.UpdateEntrySet(new PhoenixService.UpdateEntrySetRequest() { Data = new[] { new PhoenixService.EntrySet() { Id = 1, ProjectId = 1, Name = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Description = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", IsActive = true, IsEntryDeletable = true, HasReference = true, CustomEditControl = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ModifyDate = DateTime.UtcNow } } }));