Skip to content

Update an existing partner

PUT
/api/partners/{id}
curl --request PUT \
--url https://example.com/api/partners/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "Community Food Pantry", "slaHours": 72, "isArchived": false, "isDefault": true, "description": "Community food pantry providing fresh produce, dry goods, and emergency family assistance.", "keywords": [ "food", "pantry", "groceries", "emergency" ], "website": "https://dreamcenterconnect.com", "publicCategoryName": "Food & Nutrition" }'
id
required
string format: uuid
Media typeapplication/json
object
name

Full display name of the resource, facility, or individual.

string
Example
Community Food Pantry
slaHours

SLA turnaround timeframe in hours for request routing and resolution.

integer
Example
72
isArchived

Flag indicating whether the partner facility is archived.

boolean
Example
false
isDefault

Flag designating the default fallback triage partner for unrouted requests.

boolean
Example
true
description

Detailed operational description or resource notes.

string
Example
Community food pantry providing fresh produce, dry goods, and emergency family assistance.
keywords

Focus keywords describing specialized services.

Array<string>
Example
[
"food",
"pantry",
"groceries",
"emergency"
]
website

Official website URL.

string
Example
https://dreamcenterconnect.com
publicCategoryName

Publicly visible assistance category name.

string
Example
Food & Nutrition

Partner updated

Media typeapplication/json
object
id
required

Unique identifier (UUID v4) for the resource.

string format: uuid
organizationId
required

Unique identifier (UUID v4) for the parent organization.

string format: uuid
name
required

Full display name of the resource, facility, or individual.

string
slaHours
required

SLA turnaround timeframe in hours for request routing and resolution.

integer
isArchived
required

Flag indicating whether the partner facility is archived.

boolean
isDefault
required

Flag designating the default fallback triage partner for unrouted requests.

boolean
description

Detailed operational description or resource notes.

string
keywords

Focus keywords describing specialized services.

Array<string>
website

Official website URL.

string
publicCategoryName

Publicly visible assistance category name.

string
createdAt
required

UTC ISO-8601 timestamp when the record was created.

string format: date-time
Example
{
"id": "a1b2c3d4-e5f6-7890-abcd-1234567890ab",
"organizationId": "10000000-0000-0000-0000-000000000001",
"name": "Community Food Pantry",
"slaHours": 72,
"isArchived": false,
"isDefault": true,
"description": "Community food pantry providing fresh produce, dry goods, and emergency family assistance.",
"keywords": [
"food",
"pantry",
"groceries",
"emergency"
],
"website": "https://dreamcenterconnect.com",
"publicCategoryName": "Food & Nutrition",
"createdAt": "2026-07-28T12:00:00Z"
}

Unauthorized