Name | Type | Description | Required? |
---|---|---|---|
Data | GeofenceCreate[] | 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:CreateGeofence xmlns:api1="http://api.phoenixplatform.com"> <api1:request> <tig:Geolocation></tig:Geolocation> <tig:Id>1</tig:Id> <tig:ProjectId>1</tig:ProjectId> <tig:Name>TestValue[c690fdec9f0a4211ba72e5f9d744bda7]</tig:Name> <tig:Tags>TestValue[284dfecbb1e148afb81a7da2853f87c0]</tig:Tags> <tig:ModifyDate>2021-01-17T20:54:18.8132780+00:00</tig:ModifyDate> <tig:Description>TestValue[e2b049093e494accbe93308690439163]</tig:Description> <tig:Address>TestValue[0bdaf93e7f4640e5a4b8ce5f6705cca0]</tig:Address> <tig:Reference>TestValue[cec02fe982c94cda8553a356d6570570]</tig:Reference> <tig:Radius>1</tig:Radius> <tig:IsActive>true</tig:IsActive> </api1:request> </api1:CreateGeofence> </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> <LocationResponse xmlns="http://api.phoenixplatform.com"> <LocationResult 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.Location.Model"> <b:GeofenceCreate xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Location.Model.Extension"> <b:CreateDate>2021-01-17T20:54:18.813278Z</b:CreateDate> <b:ModifyDate>2021-01-17T20:54:18.813278Z</b:ModifyDate> <b:Name i:nil="true" /> <b:ProjectId>0</b:ProjectId> </b:GeofenceCreate> </b:Data> <TotalRecords xmlns="http://schemas.datacontract.org/2004/07/Tigerspike.Phoenix.Services">1</TotalRecords> </LocationResult> </LocationResponse> </s:Body> </s:Envelope>
Sample Request
POST /projects/{projectId}/geofences? HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/json; charset=utf-8 Authorization: Bearer [YOUR SUPER SECURE TOKEN] Content-Length: 904 Host: [CallHost] Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5)- [{ "Geolocation" : , "Id" : 1, "ProjectId" : 1, "Name" : "TestValue[41b5a74a6fa14271b98ff0b1cf83275e]", "Tags" : "TestValue[b33ba9b73c7147deb8f63045b5364a2e]", "ModifyDate" : "2021-01-17T20:54:18.8127652+00:00", "Description" : "TestValue[3efc866c2f3b49d0bcb0cd8c20625ed8]", "Address" : "TestValue[deaefb009bbc4f45894d7d5781fa9c3a]", "Reference" : "TestValue[3200d441b7a74f31b97aac307159e4df]", "Radius" : 1, "IsActive" : true }]
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, "CreateDate": "2021-01-17T21:43:32.8451538Z", "ModifyDate": "2021-01-17T21:43:32.8451538Z" }]
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.PhoenixLocation.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.IPhoenixLocationService>(configuration); var response = proxy.Execute(request, o => o.CreateGeofence(new PhoenixService.CreateGeofenceRequest() { Data = new[] { new PhoenixService.GeofenceCreate() { Geolocation = , Id = 1, ProjectId = 1, Name = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Tags = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", ModifyDate = DateTime.UtcNow, Description = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Address = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Reference = "TestValue["Guid.NewGuid().ToString().Replace("-",string.Empty)+"]", Radius = 1, IsActive = true } } }));