Functions - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

This endpoint returns a list of available spatial functions within the API.

  • Purpose: Provides supported spatial functions that can be used for querying features.
  • Function Metadata: Includes function names, argument types, and return types.

Request format

The request parameters are always sent as an HTTP query string.

https://api.cloud.precisely.com/v1/ogcapi/enrich/functions

Request parameters

None

Example

Request:

https://api.cloud.precisely.com/v1/ogcapi/enrich/functions 

Response:

{
  "functions": [
    {
      "name": "s_within",
      "arguments": [
        {
          "type": [
            "geometry"
          ]
        },
        {
          "type": [
            "geometry"
          ]
        }
      ],
      "returns": [
        "boolean"
      ]
    },
    {
      "name": "s_contains",
      "arguments": [
        {
          "type": [
            "geometry"
          ]
        },
        {
          "type": [
            "geometry"
          ]
        }
      ],
      "returns": [
        "boolean"
      ]
    },
    {
      "name": "s_intersects",
      "arguments": [
        {
          "type": [
            "geometry"
          ]
        },
        {
          "type": [
            "geometry"
          ]
        }
      ],
      "returns": [
        "boolean"
      ]
    }
  ]
}