User APIs/Landmark Bulk Import
Landmark Bulk Import
POST
/user/landmarkbulkjobsBearer token required
ADMIN | USERContent-Type:
application/jsonRequest Body
| Name | Type | Required | Description |
|---|---|---|---|
type | string | Required | GEOFENCEPOI |
rows | array | Required | Array of landmarks with coordinates |
Request Example
JSON
{
"type": "POI",
"rows": [
{
"rowNumber": 1,
"name": "Fuel Station A",
"latitude": 28.6139,
"longitude": 77.209,
"address": "Connaught Place"
}
]
}Code Examples
curl -X POST 'https://<your-domain>:3001/user/landmarkbulkjobs' \
-H 'Authorization: Bearer <token>' \
-H 'Content-Type: application/json' \
-d '{
"type": "POI",
"rows": [
{
"rowNumber": 1,
"name": "Fuel Station A",
"latitude": 28.6139,
"longitude": 77.209,
"address": "Connaught Place"
}
]
}'