File tree Expand file tree Collapse file tree 7 files changed +1092
-4
lines changed
content/en/api/v2/datasets Expand file tree Collapse file tree 7 files changed +1092
-4
lines changed Original file line number Diff line number Diff line change 44 "spec_versions": {
55 "v1": {
66 "apigentools_version": "1.6.6",
7- "regenerated": "2025-07-22 07:16:13.613054 ",
8- "spec_repo_commit": "8ca2883c "
7+ "regenerated": "2025-07-22 13:21:43.086373 ",
8+ "spec_repo_commit": "fb715cc6 "
99 },
1010 "v2": {
1111 "apigentools_version": "1.6.6",
12- "regenerated": "2025-07-22 07:16:22.952520 ",
13- "spec_repo_commit": "8ca2883c "
12+ "regenerated": "2025-07-22 13:21:52.360250 ",
13+ "spec_repo_commit": "fb715cc6 "
1414 }
1515 }
1616}
Original file line number Diff line number Diff line change @@ -6573,6 +6573,18 @@ menu:
65736573 url : /api/latest/datasets/
65746574 identifier : datasets
65756575 generated : true
6576+ - name : Edits a dataset
6577+ url : ' #edits-a-dataset'
6578+ identifier : datasets-edits-a-dataset
6579+ parent : datasets
6580+ generated : true
6581+ params :
6582+ versions :
6583+ - v2
6584+ operationids :
6585+ - EditDataset
6586+ unstable : []
6587+ order : 4
65766588 - name : Get a single dataset by ID
65776589 url : ' #get-a-single-dataset-by-id'
65786590 identifier : datasets-get-a-single-dataset-by-id
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -12401,6 +12401,14 @@ components:
1240112401 required:
1240212402 - data
1240312403 type: object
12404+ DatasetEditRequest:
12405+ description: Edit request for a dataset.
12406+ properties:
12407+ data:
12408+ $ref: '#/components/schemas/Dataset'
12409+ required:
12410+ - data
12411+ type: object
1240412412 DatasetResponseMulti:
1240512413 description: Response containing a list of datasets.
1240612414 properties:
@@ -49619,6 +49627,47 @@ paths:
4961949627 permissions: []
4962049628 x-undo:
4962149629 type: safe
49630+ put:
49631+ description: Edits the dataset associated with the ID.
49632+ operationId: EditDataset
49633+ parameters:
49634+ - $ref: '#/components/parameters/DatasetID'
49635+ requestBody:
49636+ content:
49637+ application/json:
49638+ schema:
49639+ $ref: '#/components/schemas/DatasetEditRequest'
49640+ description: Dataset payload
49641+ required: true
49642+ responses:
49643+ '200':
49644+ content:
49645+ application/json:
49646+ schema:
49647+ $ref: '#/components/schemas/DatasetResponseSingle'
49648+ description: OK
49649+ '400':
49650+ $ref: '#/components/responses/BadRequestResponse'
49651+ '403':
49652+ $ref: '#/components/responses/NotAuthorizedResponse'
49653+ '404':
49654+ $ref: '#/components/responses/NotFoundResponse'
49655+ '429':
49656+ $ref: '#/components/responses/TooManyRequestsResponse'
49657+ security:
49658+ - apiKeyAuth: []
49659+ appKeyAuth: []
49660+ - AuthZ: []
49661+ summary: Edits a dataset
49662+ tags:
49663+ - Datasets
49664+ x-codegen-request-body-name: body
49665+ x-menu-order: 4
49666+ x-permission:
49667+ operator: OPEN
49668+ permissions: []
49669+ x-undo:
49670+ type: idempotent
4962249671 /api/v2/domain_allowlist:
4962349672 get:
4962449673 description: Get the domain allowlist for an organization.
You can’t perform that action at this time.
0 commit comments