Getting Started
This guide walks you through creating an individual customer account using the Rime API. You’ll make your first successful API call and understand the individual account creation process.Individual accounts may require personal information depending on compliance
settings.
Prerequisites
Before creating an individual account, ensure you have:- API access credentials -
client_id
andclient_secret
from your onboarding - Authentication token - Follow our authentication guide to get your access token
Individual Account Requirements
Individual accounts have specific field requirements: Required for all individual accounts:- Account type (
type
) - must beindividual
- Your customer identifier (your internal reference for the client as
external_id
)
- First name and last name (
first_name
,last_name
) - Date of birth (
dob_day
,dob_month
,dob_year
) - Place of birth (
place_of_birth
) - Address details (
country
,city
,line1
,postal_code
,state
,line2
) - Tax residencies (
tax_residencies
) - Tax Identification Number (
tin
)
Field requirements depend on your compliance settings. Check your distributor
dashboard for KYC and CRS requirements.
Step-by-Step Implementation
Step 1: Prepare individual account data
Structure your individual account data with the required personal information:Step 2: Create the individual account
Make the API call to create your individual account:Step 3: Handle the response
A successful individual account creation returns a201 Created
status with the account details:
Account Management
Use the account ID for all future operations like updating personal details,
viewing portfolios, or placing personal investment orders.
Troubleshooting
400 Bad Request - Constraint Violations
400 Bad Request - Constraint Violations
Cause: Duplicate
external_id
for the same distributorSolution: Ensure each individual account has a unique external_id
422 Unprocessable Entity - Validation Errors
422 Unprocessable Entity - Validation Errors
Cause: Missing required individual fields or invalid data formatSolution: Check individual account requirements based on your KYC/CRS settings
Next Steps
After creating an individual account, you can:- Retrieve fund information - Explore available investment options
- Get portfolio information - View the individual account’s holdings
- Buy shares - Start trading on behalf of the individual account