Skip to main content
PATCH
/
catchAll
/
projects
/
{project_id}
Update project
curl --request PATCH \
  --url https://catchall.newscatcherapi.com/catchAll/projects/{project_id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "AI M&A Tracking (Q2 2026)"
}
'
{
  "success": true,
  "message": "Project updated successfully.",
  "project_id": "60a85db4-78ec-4b78-876a-bc7d9cdadd04"
}

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.

Body

application/json

Updates one or more fields of an existing project. At least one field must be provided.

name
string

New name for the project.

Minimum string length: 1
Example:

"AI M&A Tracking (Q2)"

description
string

New description for the project.

Example:

"Updated scope to include private equity."

Response

Project updated successfully.

success
boolean
required

True if the operation succeeded; false otherwise.

Example:

true

message
string
required

Human-readable result message.

Example:

"Project updated successfully."

project_id
string<uuid>
required

Project identifier.

Example:

"60a85db4-78ec-4b78-876a-bc7d9cdadd04"