Skip to main content
DELETE
/
integrations
/
external
/
tasks
/
{id}
Remoção de tarefa
curl --request DELETE \
  --url https://api.wegly.com.br/integrations/external/tasks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "recurrence_scope": "only_this"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Utilize o token de integração no header Authorization: Bearer {token}. O domínio de origem (Origin/Referer) deve respeitar allowed_domain, quando configurado na chave.

Path Parameters

id
string<uuid>
required

ID da tarefa.

Body

application/json
recurrence_scope
enum<string>
Available options:
only_this,
this_and_future,
open_only,
all

Response

Tarefa removida.

success
boolean