-
-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom data exports feature #2975
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…values to viewsets
joshuaberetta
added
API
Changes related to API endpoints
Back end
enhancement
Ideas, improvements and features
labels
Jan 26, 2021
joshuaberetta
changed the title
Custom data exports feature
[WIP] Custom data exports feature
Jan 27, 2021
joshuaberetta
force-pushed
the
2967-custom-data-exports
branch
from
February 3, 2021 22:12
6d23fee
to
e191109
Compare
joshuaberetta
changed the title
[WIP] Custom data exports feature
Custom data exports feature
Feb 5, 2021
Closed
jnm
requested changes
Mar 4, 2021
…oint OSM geoJSON export feature and export field filtering
…-ordering Migrate `/exports` to nested assets endpoint
…asset-detail Include export url in asset detail
jnm
approved these changes
Mar 9, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
List of export settings for a specific asset
GET /api/v2/assets/{asset_uid}/export-settings/
Example
CRUD
asset_uid
- is the unique identifier of a specific assetsetting_uid
- is the unique identifier of a specific export settingCreate an export setting for an asset
POST /api/v2/assets/{asset_uid}/export-settings/
Example
Payload
where:
multiple_select
-type responses. Valid inputs include:Retrieves a specific export setting
GET /api/v2/assets/{asset_uid}/export-settings/{setting_uid}/
Example
Updates an asset's export setting
PATCH /api/v2/assets/{asset_uid}/export-settings/{setting_uid}/
Example
Payload
Deletes current export setting
DELETE /api/v2/assets/{asset_uid}/export-settings/{setting_uid}/
Example
Description
Allow for export setting preferences to be created and managed for an asset as well in including a new option for filtering exports by field.
Related issues
closes #2967
related to #2963, #2881