Manage users, workspaces, and broadcast notes
Users registered in the system via their generated tokens.
| Name | Token / ID | Created | Actions |
|---|
| Name | ID & Members | Add Member | Actions |
|---|
Send a note to everyone, a specific workspace, or a specific user.
Use these endpoints to integrate with the Family Sharing service in the ChristNote app.
http://localhost:3000/api/v1
Send a full JSON record (note or prayer page) to a recipient.
POST /share/:recipient_id
Headers:
Authorization: Bearer YOUR_PERSONAL_TOKEN
Content-Type: application/json
Request Body: (Example ChristNote Note JSON)
{
"title": "Note Title",
"content": "<p>Note content here...</p>",
"images": []
}
Pulls all items shared with you. Returns an array of items.
GET /inbox
Headers:
Authorization: Bearer YOUR_PERSONAL_TOKEN
Response Example:
[
{
"share_id": "uuid-string",
"type": "note",
"title": "Daily Inspiration",
"sender_name": "John Doe",
"created_at": 1715234567
}
]
Removes a shared item from your inbox or outbox.
DELETE /shares/:share_id
Headers:
Authorization: Bearer YOUR_PERSONAL_TOKEN