You are here

public function DeviceCredentials::deleteDeviceCredential in Auth0 Single Sign On 8.2

Parameters

string $id:

Return value

mixed

File

vendor/auth0/auth0-php/src/API/Management/DeviceCredentials.php, line 69

Class

DeviceCredentials

Namespace

Auth0\SDK\API\Management

Code

public function deleteDeviceCredential($id) {
  return $this->apiClient
    ->method('delete')
    ->addPath('device-credentials', $id)
    ->call();
}