import SnagSolutions from '@snagsolutions/sdk';
const client = new SnagSolutions({
apiKey: 'My API Key',
});
const websiteUserAttribute = await client.auctions.websiteUserAttributes.delete('id', {
body_id: '123e4567-e89b-12d3-a456-426614174003',
organizationId: '123e4567-e89b-12d3-a456-426614174002',
websiteId: '123e4567-e89b-12d3-a456-426614174001',
});
console.log(websiteUserAttribute.message);
{
"message": "<string>"
}
Delete a website user attribute
import SnagSolutions from '@snagsolutions/sdk';
const client = new SnagSolutions({
apiKey: 'My API Key',
});
const websiteUserAttribute = await client.auctions.websiteUserAttributes.delete('id', {
body_id: '123e4567-e89b-12d3-a456-426614174003',
organizationId: '123e4567-e89b-12d3-a456-426614174002',
websiteId: '123e4567-e89b-12d3-a456-426614174001',
});
console.log(websiteUserAttribute.message);
{
"message": "<string>"
}
Body
The body is of type object
.
200
The response is of type object
.
Was this page helpful?