Delete organization access link¶
Deletes the organization access link.
DELETE https://api.tedee.com/api/v1.30/organization/{organizationId}/accessLink/{accessLinkId}
URI Parameters
Name | Type | Description |
---|---|---|
organizationId | number | id of the organization |
accessLinkId | UUID | id of the access link |
Responses¶
Name | Description |
---|---|
204 No Content | successful operation |
404 Not Found | access link not found |
Scopes¶
Name | Description |
---|---|
AccessLink.ReadWrite | Grants user possibility to manage organization access links |
Examples¶
Delete organization access link¶
Sample request
curl -X DELETE "https://api.tedee.com/api/v1.30/organization/1/accesslink/10df36b5-a06e-4bec-9398-786b0231453a" -H "accept: application/json" -H "Content-Type: application/json-patch+json" -H "Authorization: Bearer <<access token>>" -d "<<body>>"
Sample response
HTTP status code: 204
{
"success": true,
"errorMessages": [],
"statusCode": 204
}