Admin Panel

Manage users and tokens.

Registered Users & Groups

📲 Import All Inboxes to App
Name Type ID Token Recipient (For Integration) Actions

Christnote API Documentation

Use these endpoints to integrate with the Family Sharing service in the ChristNote app.

Base URL

http://localhost:3000/api/v1

1. Send an Item

Send a full JSON record (note or prayer page) to a recipient.

POST /share/:recipient_id

Headers:

Authorization: Bearer YOUR_TOKEN
Content-Type: application/json

Body: Full JSON of the note.

2. Fetch Inbox (With Pagination)

Retrieve shared items for the authenticated user. Returns ALL items sorted by latest updates first.

GET /inbox?page=1&limit=10

Headers:

Authorization: Bearer YOUR_TOKEN

3. Mark as Read

Mark a specific shared item as read.

POST /inbox/:share_id/read

Headers:

Authorization: Bearer YOUR_TOKEN