Skip to content

List partners for the authenticated user's organization

GET
/api/partners
curl --request GET \
--url https://example.com/api/partners \
--header 'Authorization: Bearer <token>'

List of partners

Media typeapplication/json
Array<object>
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