☑️Quick Start
Prerequisites
Step 1: Register a New User
Request
curl -L \
--request POST \
--url 'https://protocol.jframework.io/api/v1/users/register' \
--header 'Brand-URL: example.com' \
--header 'Content-Type: application/json' \
--data '{
"username": "john.doe",
"phoneNumber": "+1234567890",
"password": "password",
"emailAddress": "john.doe@jframework.io",
"firstName": "John",
"lastName": "Doe",
"nickName": "JohnDoe",
"referralCode": "INVITATIONCODE",
"timeZoneId": "KIplKnap0Kp"
}'Response
Step 2: Sign In to Get Auth-Key
Request
Response
Step 3: Fetch User Profile (Authorized Request)
Request
Response
Step 4: Using Auth-Key for Other Authorized APIs
Example: Fetch User notifications
Example: Update User Profile
Step-by-Step Workflow
Best Practices
Last updated