Name | Type | Description | Required? |
---|---|---|---|
Data | Project[] | Unavailable | Required |
CompanyId | System.Int32 | Unavailable | Required |
CompanyId | System.Int32 | Unavailable | Required |
Name | Type | Description | Required? | CompanyId | 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:CreateProject xmlns:api1="http://api.phoenixplatform.com"> <api1:request> <tig:Id>1</tig:Id> <tig:Name>TestValue[80b512adb889442297e230baa99214df]</tig:Name> <tig:Reference>TestValue[91112944884a466c9e43db3aac6387c2]</tig:Reference> <tig:StartDate>2021-03-01T21:25:34.4619970+00:00</tig:StartDate> <tig:EndDate>2021-03-01T21:25:34.4619970+00:00</tig:EndDate> <tig:IsActive>true</tig:IsActive> <tig:ModifyDate>2021-03-01T21:25:34.4619970+00:00</tig:ModifyDate> <tig:MetaDataParameters>new List<KeyValuePair<string, string>>().ToArray()</tig:MetaDataParameters> </api1:request> </api1:CreateProject> </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> <ProjectResponse xmlns="http://api.phoenixplatform.com"> <ProjectResult 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.Project.Model"> <b:Project xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Identity.Model"> <b:CompanyId>0</b:CompanyId> <b:CreateDate>2021-03-01T21:25:34.461997Z</b:CreateDate> <b:IsActive>false</b:IsActive> <b:ModifyDate>2021-03-01T21:25:34.461997Z</b:ModifyDate> <b:Name i:nil="true" /> <b:Reference i:nil="true" /> </b:Project> </b:Data> <TotalRecords xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services">1</TotalRecords> </ProjectResult> </ProjectResponse> </s:Body> </s:Envelope>
Sample Request
POST /providers/{providerId}/projects? HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json; charset=utf-8 Authorization: Bearer [YOUR SUPER SECURE TOKEN] Content-Length: 788 Host: [CallHost] Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5)- [{ "Id" : 1, "Name" : "TestValue[0727a620bb994f03a48c085fc24ea70c]", "Reference" : "TestValue[348f0a8f14fb41b5a75bef02e4543a1e]", "StartDate" : "2021-03-01T21:25:34.4611923+00:00", "EndDate" : "2021-03-01T21:25:34.4611923+00:00", "IsActive" : true, "ModifyDate" : "2021-03-01T21:25:34.4611923+00:00", "MetaDataParameters" : new List<KeyValuePair<string, string>>().ToArray() }]
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 [{ "CompanyId": 0, "Name": null, "Reference": null, "IsActive": false, "CreateDate": "2021-03-01T22:11:52.1665712Z", "ModifyDate": "2021-03-01T22:11:52.1665712Z" }]
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.PhoenixProject.V1; using Tigerspike.Phoenix.Services.Api; var request = new SoapServiceRequest() { Token = "[YOUR SUPER SECURE TOKEN]", CompanyId = 1 }; var configuration = CustomConfigurationFactory.CreateServiceConfiguration(Assembly.GetExecutingAssembly()); var proxy = new PhoenixServiceHelper<PhoenixService.IPhoenixProjectService>(configuration); var response = proxy.Execute(request, o => o.CreateProject(new PhoenixService.CreateProjectRequest() { Data = new[] { new PhoenixService.Project() { Id = 1, Name = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Reference = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", StartDate = DateTime.UtcNow, EndDate = DateTime.UtcNow, IsActive = true, ModifyDate = DateTime.UtcNow, MetaDataParameters = new List<KeyValuePair<string, string>>().ToArray() } } }));