Create Gps Position
create_gps_positionCreate a GPS position record in Procore to log field productivity data. Requires company ID, latitude, longitude, and timestamp.
Instructions
Create a new Gps Position. Use this to create a new Field Productivity records in Procore. Creates a new Field Productivity records and returns the created object on success (HTTP 201). Required parameters: company_id, latitude, longitude, timestamp. Procore API: Project Management > Field Productivity. Endpoint: POST /rest/v1.0/companies/{company_id}/gps_positions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company_id | Yes | URL path parameter — unique identifier for the company. | |
| latitude | Yes | JSON request body field — the latitude in degrees. | |
| longitude | Yes | JSON request body field — the longitude in degrees. | |
| altitude | No | JSON request body field — the altitude, measured in meters. | |
| horizontal_accuracy | No | JSON request body field — the horizontal radius of uncertainty for the location, measured in meters. | |
| vertical_accuracy | No | JSON request body field — the vertical radius of uncertainty for the location, measured in meters. | |
| timestamp | Yes | JSON request body field — the time at which this location was determined. |