The delete credential set operation will delete the credential with the specified parameters.
Request
Request URI
Method | Request URI |
---|---|
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{username}/{applicationName} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{userGuid}/{applicationName} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{adsid}/{applicationName} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{userId}/{applicationName} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{username}/{applicationGuid} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{userGuid}/{applicationGuid} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{adsid}/{applicationGuid} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{userId}/{applicationGuid} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{username}/{applicationId} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{userGuid}/{applicationId} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{adsid}/{applicationId} |
DELETE | https://{company-name}.helloid.com/api/v1/credentialset/{userId}/{applicationId} |
Request parameters
Parameter | Description |
---|---|
{company-name} | The company name of the target company |
{username} | The user name of the target user |
{userGuid} | The guid of the target user |
{adsid} | The AD SID of the target user |
{userId} | The id of the target user |
{applicationName} | The name of the target application |
{applicationGuid} | The guid of the target application |
{applicationId} | The id of the target application |
Request headers
Header | Description |
---|---|
Content-Type | Required. Must be set to application/json. |
Request body
None.
Response
Response status
Code | Description |
---|---|
200(OK) | Indicates that the operation was successful. |
400(BAD REQUEST) | Indicates that the operation was not successful. There were validation errors or the request body was malformed. |
401(UNAUTHORIZED) | Indicates that no authentication header was given or the api key and secret were invalid. If the api key and secret were valid check the configuration in your portal, it is possibilty these were IP restricted or are disabled. |
Please also see common HTTP status codes.
Sample response body
None.
Example request with cURL
Replace placeholder values surrounded by {
}
with the actual values.
curl -u {api-key}:{api-secret} -X DELETE https://{company-name}.helloid.com/api/v1/users/{username}/{applicationName}