const response = await fetch('/v1/workspace/{workspaceId}/property-definitions/{id}/reorder', {
method: 'PATCH',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"destinationId": "fff984ff-60c9-4875-b1d5-3f249e1500b3"
}),
});
const data = await response.json();