Remove Elemental from Favorites
Remove an elemental from your favorites list.
DELETE/v1/elemental/{elemental_id}/favorites- Param
- Response
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| elemental_id | string | ✅ | ID of the elemental to remove from favorites |
Example
/v1/elemental/your-elemental-id/favorites
Properties
| Name | Type | Description |
|---|---|---|
| code | number | HTTP status code |
| meta | Object | Meta information about the response |
| meta.version | string | API version |
| meta.is_authenticated | boolean | Whether the request was authenticated |
| response | null | Response data (null for this endpoint) |
Example
{
"code": 200,
"meta": {
"version": "1.0",
"is_authenticated": true
},
"response": null
}
CURL Example
curl -X DELETE "https://api-integrations.snackprompt.com/v1/elemental/{elemental_id}/favorites" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"