Skip to content

Delete trail like by actor and trail

POST
/api/v1/trail-like/delete
curl --request POST \
--url https://example.com/api/v1/trail-like/delete \
--header 'Content-Type: application/json' \
--data '{ "actor": "example", "trail": "example" }'

Deletes a trail like without needing to know its ID. Uses actor and trail IDs to find and delete

Media type application/json
object
actor
required

User ID (15 chars)

string
trail
required

Trail ID (15 chars)

string
Example generated
{
"actor": "example",
"trail": "example"
}

Trail like deleted

Bad Request

Not Found

Internal Server Error