Skip to main content
This function allows you to retrieve a single conversion by its unique identifier, see an example below:
You should authenticate/initialize Ip2Geo before using this method.

With Select Fields

You can select specific fields from the conversion data object using the select parameter:

Parameters

string
required
The unique identifier (UUID) of the conversion to retrieve.
Array<SelectField>
Select specific data fields to return. If not specified, all data fields are returned. See SELECT Constants for all available fields.

Response

boolean
Whether the request was successful.
string
Response message describing the result.
number
HTTP status code.
Conversion | Partial<Conversion> | null
The conversion data. If select was specified, only the selected fields are returned. Returns null if the conversion was not found.
object
Request metadata containing:
  • reqId: Unique request identifier.
  • resTime: Response time in milliseconds.
For all available SELECT constants and their values, see the SELECT Constants reference.