URL Groups

Remove Endpoints

Remove one or more endpoints from a URL Group

DELETE/v2/topics/{urlGroupName}/endpoints
cURL
curl --request DELETE \
  --url https://qstash-{region}.upstash.io/v2/topics/{urlGroupName}/endpoints \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "endpoints": "<endpoints>"
  }'

Authorization

Authorizationheaderstringrequired

Bearer authentication header of the form Bearer <token>.

Path parameters

urlGroupNamepathstringrequired

The name of your URL Group.

Body

endpointsobject[]required

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

Response

200 — Endpoint(s) removed successfully

Loading search…