| GPSServiceAddBulkGPS Method |
Save multiple GPS records at once
Send a POST to
RESTUrl/GPSServer/GPS/BulkNew/?Token={token}&Device={Device}
with the GPS data as json body
Namespace:
ParaPlanREST
Assembly:
ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public SimpleResponse AddBulkGPS(
GPSWireObjectWrapper gpsData,
string token,
string device
)
public:
SimpleResponse^ AddBulkGPS(
GPSWireObjectWrapper^ gpsData,
String^ token,
String^ device
)
function AddBulkGPS(gpsData, token, device);
Parameters
- gpsData
- Type: ParaPlanRESTGPSWireObjectWrapper
Wrapper object containing array of GPS objects - token
- Type: SystemString
Token from API Login - device
- Type: SystemString
Device name used when logging into API
Return Value
Type:
SimpleResponseObject with information about success. .errorMessage will be populated if .success is false
See Also