Skip to main content
DELETE
/
v2
/
topics
/
{urlGroupName}
/
endpoints
Remove Endpoints
curl --request DELETE \
  --url https://qstash.upstash.io/v2/topics/{urlGroupName}/endpoints \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "endpoints": [
    {
      "name": "<string>",
      "url": "<string>"
    }
  ]
}
'
Remove one or multiple endpoints from a URL Group. If all endpoints have been removed, the URL Group will be deleted.

Authorizations

Authorization
string
header
required

QStash authentication token

Path Parameters

urlGroupName
string
required

The name of your URL Group.

Body

application/json
endpoints
object[]
required

Then list of endpoints to remove from URL Group. Either name or url must be provided.

Response

200

Endpoint(s) removed successfully