Name | Type | Description | Required? |
---|---|---|---|
Data | Application[] | 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:UpdateApplication xmlns:api1="http://api.phoenixplatform.com"> <api1:request> <tig:Id>1</tig:Id> <tig:ProjectId>1</tig:ProjectId> <tig:ApplicationTypeId>Apple_iOS</tig:ApplicationTypeId> <tig:Name>TestValue[78c55ec22ab54c7dbb68952ea772b7c6]</tig:Name> <tig:Description>TestValue[efc58a5e429e4d87a8926afcc11c146e]</tig:Description> <tig:MetaDataParameters>new List<KeyValuePair<string, string>>().ToArray()</tig:MetaDataParameters> <tig:ImageUrl>TestValue[b7e9beba90ca4130b9dd69602980a306]</tig:ImageUrl> <tig:UserId>1</tig:UserId> <tig:LatestVersion>TestValue[2af8688a75fd493fb570d42531c9a3cc]</tig:LatestVersion> <tig:ForceUpgrade>true</tig:ForceUpgrade> <tig:InstallationUrl>TestValue[2e29aed42a7840ae895060ae8697fbd0]</tig:InstallationUrl> <tig:InstallationCount>1</tig:InstallationCount> <tig:Reference>TestValue[d76cb735156f48ce90637ff4bd41d078]</tig:Reference> <tig:ModifyDate>2021-03-05T05:27:42.3665793+00:00</tig:ModifyDate> <tig:PhoenixMessaging_AccountId>1</tig:PhoenixMessaging_AccountId> </api1:request> </api1:UpdateApplication> </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:Application xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Identity.Model"> <b:CreateDate>2021-03-05T05:27:42.3665793Z</b:CreateDate> <b:ForceUpgrade>false</b:ForceUpgrade> <b:InstallationCount>0</b:InstallationCount> <b:ModifyDate>2021-03-05T05:27:42.3665793Z</b:ModifyDate> <b:Name i:nil="true" /> <b:ProjectId>0</b:ProjectId> <b:Reference i:nil="true" /> <b:UserId>0</b:UserId> </b:Application> </b:Data> <TotalRecords xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services">1</TotalRecords> </ProjectResult> </ProjectResponse> </s:Body> </s:Envelope>
Sample Request
POST /projects/{projectid}/applications? HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json; charset=utf-8 Authorization: Bearer [YOUR SUPER SECURE TOKEN] Content-Length: 1378 Host: [CallHost] Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5)- [{ "Id" : 1, "ProjectId" : 1, "ApplicationTypeId" : "dotNet", "Name" : "TestValue[8036dd93c7a84751aa29a6917156193f]", "Description" : "TestValue[461a4409010e456c856c2fd1bc65365f]", "MetaDataParameters" : new List<KeyValuePair<string, string>>().ToArray(), "ImageUrl" : "TestValue[c5b265a17bb846efa55088e4d6568e07]", "UserId" : 1, "LatestVersion" : "TestValue[6c692adcfc0145efa344d2a16fcdb745]", "ForceUpgrade" : true, "InstallationUrl" : "TestValue[0899a2aafa7e40ff8849f11e6f69c054]", "InstallationCount" : 1, "Reference" : "TestValue[0d734c5e73d1421ba8e5d1491fcd5dc3]", "ModifyDate" : "2021-03-05T05:27:42.3665793+00:00", "PhoenixMessaging_AccountId" : 1 }]
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, "UserId": 0, "ForceUpgrade": false, "InstallationCount": 0, "Reference": null, "CreateDate": "2021-03-05T07:50:45.5210243Z", "ModifyDate": "2021-03-05T07:50:45.5210243Z" }]
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]", ProjectId = 1 }; var configuration = CustomConfigurationFactory.CreateServiceConfiguration(Assembly.GetExecutingAssembly()); var proxy = new PhoenixServiceHelper<PhoenixService.IPhoenixProjectService>(configuration); var response = proxy.Execute(request, o => o.UpdateApplication(new PhoenixService.UpdateApplicationRequest() { Data = new[] { new PhoenixService.Application() { Id = 1, ProjectId = 1, ApplicationTypeId = PhoenixService.ApplicationTypeEnum.Google_Android, Name = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Description = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", MetaDataParameters = new List<KeyValuePair<string, string>>().ToArray(), ImageUrl = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", UserId = 1, LatestVersion = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ForceUpgrade = true, InstallationUrl = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", InstallationCount = 1, Reference = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ModifyDate = DateTime.UtcNow, PhoenixMessaging_AccountId = 1 } } }));