PATCH /projects/{project}
Endpoint
Section titled “Endpoint”PATCH /api/v1/projects/{project}Description
Section titled “Description”Applies a partial update to a stored project.
Path Parameters
Section titled “Path Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project | string | Yes | Project name |
Request Body
Section titled “Request Body”| Field | Type | Required | Description |
|---|---|---|---|
label | string or null | No | Updated label |
description | string or null | No | Updated description |
status | string or null | No | enabled or disabled |
Example Request
Section titled “Example Request”curl -X PATCH http://localhost/api/v1/projects/status-page \ -H "Content-Type: application/json" \ -H "X-Uplinkr-Api-Key: replace-me-with-a-long-random-key" \ -d '{ "label": "Updated Status Page", "description": "Updated description", "status": "disabled" }'Example Response
Section titled “Example Response”{ "data": { "project": "status-page" }}Status Codes
Section titled “Status Codes”200Project updated401Missing or invalid API key404Project not found422Validation failed