Deletes a Profile List
Deletes a Profile List
POST
https://api.ocamba.com/v1/hood/profile-lists/{id}
Delete a Profile List from the system. The Profile List cannot be restored, or any longer used on the platform.
Warning
This change will be automatically synchronized.
Note
We recommend you consider other options before deletion.
Rate limits:
- Burst: 10/s
- Steady: 150/m
Path parameters
parametersResponse schemas
•
204
No Content
curl -X POST \
"https://api.ocamba.com/v1/hood/profile-lists/{id}" \
-H "Authorization: Bearer {TOKEN}"const url = 'https://api.ocamba.com/v1/hood/profile-lists/{id}';
const options = {
method: 'POST',
headers: {
Authorization: `Bearer {TOKEN}`
}
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}$ch = curl_init("https://api.ocamba.com/v1/hood/profile-lists/{id}");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer {TOKEN}"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);Responses
204 No Content
Responses