Create a new partner
const url = 'https://example.com/api/partners';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"name":"Community Food Pantry","slaHours":72,"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"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/partners \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "Community Food Pantry", "slaHours": 72, "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" }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”object
Full display name of the resource, facility, or individual.
Example
Community Food PantrySLA turnaround timeframe in hours for request routing and resolution.
Example
72Flag designating the default fallback triage partner for unrouted requests.
Example
trueDetailed operational description or resource notes.
Example
Community food pantry providing fresh produce, dry goods, and emergency family assistance.Focus keywords describing specialized services.
Example
[ "food", "pantry", "groceries", "emergency"]Official website URL.
Example
https://dreamcenterconnect.comPublicly visible assistance category name.
Example
Food & NutritionResponses
Section titled “Responses”Partner created
object
Unique identifier (UUID v4) for the resource.
Unique identifier (UUID v4) for the parent organization.
Full display name of the resource, facility, or individual.
SLA turnaround timeframe in hours for request routing and resolution.
Flag indicating whether the partner facility is archived.
Flag designating the default fallback triage partner for unrouted requests.
Detailed operational description or resource notes.
Focus keywords describing specialized services.
Official website URL.
Publicly visible assistance category name.
UTC ISO-8601 timestamp when the record was created.
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