ckanaction/docs/content/docs/organization_delete.mdx

34 lines
No EOL
967 B
Text

---
title: organization_delete
full: true
_openapi:
preload:
- ./lib/openapi.yml
method: DELETE
webhook: false
toc: []
structuredData:
headings: []
contents:
- content: >
Delete an organization.
You must be authorized to delete the organization and no datasets
should belong to the organization unless
`'ckan.auth.create_unowned_dataset=True'`
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
export default function Layout(props) {
const { APIPage, OpenAPIPage } = props.components ?? {};
// "APIPage" is the old name from v10, this allows both for backward compatibility
const Comp = OpenAPIPage ?? APIPage;
return (
<>
{props.children}
<Comp document="./lib/openapi.yml" operations={[{"path":"organization_delete","method":"delete"}]} showDescription />
</>
);
}