Skip to main content
DELETE
/
catchAll
/
projects
/
{project_id}
/
resources
/
{resource_type}
/
{resource_id}
Remove resource from project
curl --request DELETE \
  --url https://catchall.newscatcherapi.com/catchAll/projects/{project_id}/resources/{resource_type}/{resource_id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Resource removed from project."
}

Documentation Index

Fetch the complete documentation index at: https://newscatcherinc-docs.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication.

Path Parameters

project_id
string<uuid>
required

Unique project identifier.

resource_type
enum<string>
required

Resource type for project association.

Available options:
job,
monitor,
dataset,
monitor_group
resource_id
string<uuid>
required

ID of the resource to remove.

Response

Resource removed from the project.

success
boolean
required

True if the operation succeeded; false otherwise.

Example:

true

message
string
required

Human-readable result message.

Example:

"Resource removed from project."