Is there a simple way in the API to duplicate an entity with all field values? (i.e. Duplicate a single Asset)
From the API, it seems the steps would be:
- Get the schema of the entity
- Determine editable fields by iterating over schema, discarding non-editable fields
- Find the single source Asset, supplying editable schema as fields argument
- Create a new Asset, supplying the list of fields/values from the Find result above
Is there an easier/faster way?