Place Parse

Description

The PlaceParse operation allows building a Place entity by parsing a Place string

URI

REST URI [GET]:
/v11.02/Place.svc/Parse?SessionId={sessionId}&Place={place}

Example

Request GET
http://wsdev.onegreatfamily.com/v11.02/Place.svc/Parse?SessionId=113434515134543151134&Place=Shelly,+Bingham,+Id,+usa
Success Response Payload
<Result xmlns="http://schemas.datacontract.org/2004/07/OGF.WS.Data" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
	<Code>0</Code>
	<Message>Success</Message>
	<Value i:type="Place">
		<City>Shelly</City>
		<Country>United States</Country>
		<County>Bingham</County>
		<RequestedPlace>Shelly, Bingham, Id, usa</RequestedPlace>
		<StandardizedPlace>Shelly, Bingham, Idaho, United States</StandardizedPlace>
		<State>Idaho</State>
	</Value>
</Result> 
Failed Response Payload
<Result xmlns="http://schemas.datacontract.org/2004/07/OGF.WS.Data">
	<Code>27001</Code>
	<Message>Your developer Id does not have permissions to make this call</Message>
</Result>
Fault Response Payload
<RestFault xmlns="http://schemas.datacontract.org/2004/07/OGF.WS.Data">
	<ErrorCode>551</ErrorCode>
	<FaultMessage>An unhandled exception has occurred</FaultMessage>
</RestFault>

Query String Parameters

Name Description Required
Place

The Place string to parse

Type: : String

Default: None

Constraints: Must be a valid Place string

Yes

SessionId

The current session Id

Type: string

Default: None

Yes

Response Elements

Name Description

Result

This operation returns a Result Entity

Type: Result

Result.Value

Result.Value will be a Place entity upon success. Otherwise an error is returned.

Type: Place

HTTP Status Code

The Web Server returns a status code which indicates if the operation was successful. Anything other than 200 should be regarded as a failure.

HTTP Status Code of 417

The Web Server threw an exception and contains a RestFault entity. Retrieve the RestFault from the Webexception response property.