Getting Started with Bripes
Set up your Bripes account and complete your first steps to start managing your agency's clients and projects efficiently.
Prerequisites
Before you begin, ensure you have the following ready:
- A business email address for your agency
- Agency details like name, logo, and website
- Team member email addresses for invitations
No credit card is required for the 14-day free trial.
Sign up for your free trial
Get started in under 2 minutes.
Visit the sign-up page
Create your account
Enter your agency name, email, and password. Verify your email if prompted.
Complete onboarding
Answer a few questions about your agency to customize your dashboard.
Configure your agency profile
Set up your branding and preferences.
Access settings
Click your profile icon in the top-right corner and select Agency Settings.
Upload logo and details
Add your logo, website URL, and service descriptions. These appear on client portals.
Set billing info
Enter payment details for post-trial subscriptions (optional now).
Customize your working hours and time zone to match client expectations.
Invite team members
Add your team to collaborate on work orders.
Full access to manage clients, billing, and settings.
View and update work orders, client communications.
Read-only access to dashboards and reports.
Navigate to team
Go to Team in the sidebar.
Send invites
Enter emails, select roles from the tabs above, and click Invite.
Confirm access
Team members accept via email and appear in your team list.
Create your first client or work order
Start delivering services.
New client
Click Clients > New Client. Enter name, email, and company.
Send portal invite
Toggle Send welcome email to give them instant access.
Create order
From a client profile, click New Work Order. Select package (e.g., "Logo Design").
Set details
Add deliverables, due date, and price. Client approves via portal.
Integrate with your tools (Optional)
Connect Bripes to your workflow. Here's a sample webhook setup.
const webhookUrl = 'https://api.bripes.com/webhooks/orders';
fetch(webhookUrl, {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
body: JSON.stringify({
event: 'order.created',
clientId: 'cli_abc123',
orderId: 'ord_xyz789'
})
});
import requests
webhook_url = 'https://api.bripes.com/webhooks/orders'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
data = {
'event': 'order.created',
'clientId': 'cli_abc123',
'orderId': 'ord_xyz789'
}
requests.post(webhook_url, json=data, headers=headers)
Bearer token obtained from Agency Settings > API Keys.
Next steps
Authentication
Secure your API integrations and client logins.
Features Overview
Explore client portals, payments, and resellers.
Configuration
Advanced agency settings and custom workflows.
Changelog
Stay updated with the latest releases.
Congratulations! Your Bripes portal is ready. Invite your first client and scale your agency.
Last updated 3 days ago
Built with Documentation.AI