Updating a geoscience object
Introduction
This guide will walk you through the process of updating a geoscience object in Evo.
You can update a geoscience object either by its path or by its UUID.
Endpoints
POST /geoscience-object/orgs/{org_id}/workspaces/{workspace_id}/objects/path/{path}POST /geoscience-object/orgs/{org_id}/workspaces/{workspace_id}/objects/path/{object_id}
These endpoints allow you to update a geoscience object. The values submitted will be validated against the specified schema properties.
Update by path
The request parameters must include the path to the geoscience object. The URL must be encoded if it contains unsafe characters.
Example request URL:
Update by UUID
The request parameters must include the UUID of the geoscience object.
Example request URL:
Request body
The request body must be a JSON object containing the properties of the geoscience object to be updated.
Example request body that is updating a pointset object:
Response
The response will be a JSON object containing the properties of the updated geoscience object along with a newly assigned object ID.
Example:
This response example reflects the properties of the updated geoscience object.
Summary
- Prepare the properties of the geoscience object you want to update.
- Make a POST request with the properties in the request body.
- The response will include the properties of the updated geoscience object along with a newly assigned object ID. This can be used for future requests to update the object.