Delete
Delete Attribute Value
client.attributes.delete(stringid, AttributeDeleteParamsparams?, RequestOptionsoptions?): AttributeDeleteResponse
delete/api/v1/attribute/{id}
Delete an attribute value by id.
Parameters
idstring
The id field.
paramsbodyunknownAttributeDeleteParams
Returns
AttributeDeleteResponsealias
unknown
DeleteAttributeValueResponse is the empty response for deleting an attribute value.
Request example TypeScript
import ConductoroneSDK from 'conductorone-sdk';
const client = new ConductoroneSDK({
apiKey: 'My API Key',
});
const attribute = await client.attributes.delete('id');
console.log(attribute);200 Example
{}