Closed jacobpascalcoblentz closed 1 year ago
Creating a basic table as follows:
CREATE TABLE public.jc_test ( fid INT PRIMARY KEY NOT NULL, geom GEOMETRY(POINT, 4326) );
Then running a POST request against it as:
POST
curl --location --request POST 'http://localhost:9000/collections/public.jc_test/items' \ --header 'Content-Type: application/json' \ --data-raw '{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -75.849253579389796, 47.6434349837781 ] } , "properties": { "fid": "1" }}'
returns this error:
Closed as duplicate of #160
Fixed in #161
Creating a basic table as follows:
Then running a
POST
request against it as:returns this error: