Function: getCustomContentOperations()
ts
function getCustomContentOperations(client, parameters): Promise<{
[key: string]: unknown;
operations?: object[] | null;
}>;Defined in: src/v2/api/operation.ts:59
Returns the permitted operations on specific custom content.
Permissions required: Permission to view the parent content of the custom content and its corresponding space.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { id: number; } | - |
parameters.id | number | The ID of the custom content for which operations should be returned. |
Returns
Promise<{ [key: string]: unknown; operations?: object[] | null; }>