delete https://api.timekit.io/v2/resources/
Deleting resources are final!
There is no going back :)
Deleting resources that exist on another slug
If you're using the API to try and delete a resource and get back the error
"error": {"message": "Deleting a user connected to more than one app is not allowed.",
"status_code": 403
}What you need to do is send a PUT request to https://api.timekit.io/v2/resources/RESOURCE_UUID instead of a DELETE along with the below in the request body:
{
"role": "none"
}You can alternatively navigate to your admin dashboard, and manually remove the resource from there as well.