const response = await fetch('/v1/workspace/{workspaceId}/property-definitions', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/workspace/{workspaceId}/property-definitions/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/workspace/{workspaceId}/property-definitions/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/workspace/{workspaceId}/property-definitions', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
const response = await fetch('/v1/workspace/{workspaceId}/property-definitions/{id}', { method: 'PATCH', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();