A Practical Guide to Testing FrankieOne v2 APIs
Document Overview
This guide explains how to use Postman or Bruno to explore and test FrankieOne’s v2 APIs, helping you understand how our platform works before integrating it into your application. API Version: This guide focuses on v2 APIs (recommended for all new integrations)What You’ll Learn
- What Postman and Bruno are and why they’re useful
- How to choose the right tool for your team
- How to access FrankieOne’s v2 API collection
- How to set up your environment
- How to create entities using v2 payloads
- How to run verification checks
- How to view results in the FrankieOne Portal
- Common testing scenarios with v2
- Troubleshooting tips
Who Should Read This
- Developers evaluating FrankieOne
- Technical teams planning integration
- Anyone wanting to understand FrankieOne’s v2 APIs
- Teams testing verification workflows
Table of Contents
- Choosing Your API Client
- Getting Started
- Setting Up Your Environment
- Understanding the v2 API Collection
- Using Testbed Data
- Running Your First v2 API Call
- Viewing Results in the Portal
- Common Testing Scenarios
- Understanding API Responses
- Best Practices
- Troubleshooting
- Next Steps
- FAQs
Choosing Your API Client
What Are API Clients?
API clients are tools that allow you to send API requests without writing code, see responses in real-time, and test different scenarios easily. Think of them as: A visual interface for interacting with APIs—like a web browser for APIs instead of websites.Postman vs Bruno
| Feature | Postman | Bruno |
|---|---|---|
| Price | Free tier (with limits) | Completely free and open-source |
| Storage | Cloud-based | Local filesystem |
| Account Required | Yes (for full features) | No |
| Collaboration | Postman cloud | Git version control |
| Offline Use | Limited | Full support |
| Collection Format | JSON | Bru (plain text) |
| Learning Curve | Beginner-friendly | Beginner-friendly |
Which Should You Choose?
Choose Postman if you:
- Want cloud sync across devices
- Prefer a polished, feature-rich interface
- Need built-in team collaboration features
- Are already familiar with Postman
Choose Bruno if you:
- Want to version control your API collections with Git
- Prefer data stored locally (privacy-focused)
- Don’t want to create an account
- Work offline frequently
- Want a lightweight, fast tool
Getting Started
Step 1: Install Your Chosen Tool
- Postman
- Bruno
- Visit: https://www.postman.com/downloads/
- Choose your operating system (Windows, Mac, Linux)
- Download and install
- Create a free account (optional but recommended)
Step 2: Get FrankieOne’s v2 API Collection
- Download directly: FrankieOne Developer Resources — look for the v2 API collection file (.json)
- Contact your FrankieOne representative if the collection is not available on the resources page
Step 3: Import the Collection
- Postman
- Bruno
- Click “Import” (top left)
- Choose file or drag and drop
- Select the FrankieOne v2 collection file
- Click “Import”
Step 4: Get Your API Credentials
You’ll need:| Credential | Description |
|---|---|
| Customer ID | Also called Account ID or X-Frankie-CustomerID |
| Customer Child ID | Optional - for sub-account isolation (if configured) |
| API Key | Authentication token |
| Environment | UAT/Sandbox for testing |
- Contact your FrankieOne representative
- Request UAT/Sandbox access
- Ask about Customer Child ID (if you have sub-accounts)
- Receive credentials via secure channel
- Keep credentials secure
| Environment | Base URL | Purpose |
|---|---|---|
| UAT | https://api.uat.frankie.one | User Acceptance Testing—for testing before production |
| Sandbox | https://api.uat.frankie.one | Development and testing |
| Production | https://api.frankie.one | Live use only (not for testing) |
Quick Authentication Reference
Here’s exactly how your authentication headers should look in every v2 API request:Understanding Customer Child ID
What is Customer Child ID?X-Frankie-CustomerChildID is an optional header used for sub-account isolation within your main FrankieOne account.
When to Use It:
| Scenario | Use CustomerChildID? |
|---|---|
| Single account, no sub-divisions | ❌ No - leave blank |
| Multiple business units or brands | ✅ Yes - if configured by FrankieOne |
| White-label implementations | ✅ Yes - if configured by FrankieOne |
| Reseller/partner accounts | ✅ Yes - if configured by FrankieOne |
- CustomerChildID is configured by FrankieOne - you cannot create child IDs via API
- All entities created with a specific CustomerChildID are isolated to that sub-account
- Reporting and data access are separated by CustomerChildID
- If you don’t have sub-accounts, leave this header blank or omit it
- Contact your FrankieOne representative
- Ask if you have sub-accounts configured
- Receive CustomerChildID values if applicable
- Add to your environment variables
Setting Up Your Environment
What Are Environments?
Environments store variables like your API base URL, Customer ID, and API Key. They let you:- Switch between UAT and Production easily
- Keep credentials secure
- Reuse variables across all requests
- Share collections without exposing keys
Required Variables for v2 API
| Variable | Value | Description |
|---|---|---|
baseUrl | https://api.uat.frankie.one | UAT API endpoint |
customerId | your-customer-id | Your Customer ID (also called X-Frankie-CustomerID) |
customerChildId | your-customer-child-id | Optional: Customer Child ID for sub-account isolation |
apiKey | your-api-key | Your API Key |
basePath | compliance/v1.2 | API version path |
entityId | (will be populated after creating entity) | Entity ID for subsequent requests |
Creating Your Environment
- Postman
- Bruno
- Click “Environments” (left sidebar)
- Click ”+” to create new
- Name it:
FrankieOne v2 UAT
| Variable | Initial Value | Current Value |
|---|---|---|
baseUrl | https://api.uat.frankie.one | https://api.uat.frankie.one |
customerId | your-customer-id | your-customer-id |
customerChildId | your-customer-child-id (optional) | your-customer-child-id (optional) |
apiKey | your-api-key | your-api-key |
basePath | compliance/v1.2 | compliance/v1.2 |
entityId |
- Click “Save”
- Select environment from dropdown (top right)
Using Variables in Requests
Both Postman and Bruno use the same syntax for variables:{{variableName}} with the actual value from your environment.
Understanding the v2 API Collection
v2 API Structure
FrankieOne’s v2 API collection is organized by entity type and functionality:Key v2 Endpoints
| Category | Endpoint | Purpose |
|---|---|---|
| Individuals | POST /v2/individuals | Create an individual entity |
GET /v2/individuals/{entityId} | Retrieve individual details | |
PATCH /v2/individuals/{entityId} | Update individual information | |
| Workflows | POST /v2/individuals/{entityId}/serviceprofiles/{serviceName}/workflows/{workflowName}/execute | Execute verification workflow |
| Documents | POST /v2/individuals/{entityId}/documents | Create/upload document |
| IDV | POST /v2/individuals/{entityId}/actions/idv/token | Get IDV token for SDK |
POST /v2/individuals/{entityId}/actions/idv/ocr | Submit document for OCR | |
POST /v2/individuals/{entityId}/actions/idv/process | Process biometric verification |
Sample Request and Response
Here’s a complete example of creating an individual and what you’ll get back, so you can quickly validate your setup is working: Request:- Create Individual, then Execute Workflow (two-step): The create response returns the
individualobject. The workflow execute response returns theworkflowResult. See Create Individual and Execute Workflow for full response schemas. - Create and Execute Workflow (single step): The response includes
individual,serviceProfile, andworkflowResultin a single payload. See Create and Execute Workflow for the full response schema.
individual.entityId— Unique identifier for this individual. You’ll need it for subsequent requests (document uploads, re-verification, monitoring).workflowResult.result— Overall workflow outcome (e.g.,PASS,FAIL,REVIEW)workflowResult.status— Execution status (e.g.,COMPLETED)workflowResult.issues[]— Any issues flagged (e.g.,BAD_DATA_ID,RISK_THRESHOLD_HIGH)workflowResult.workflowStepResults[]— Detailed results per workflow step (KYC, AML, etc.)
Using Testbed Data
What is Testbed Data?
Testbed data is pre-configured test data that produces predictable results in the FrankieOne UAT environment. Purpose:- Test different scenarios
- No real customer data needed
- Consistent, repeatable results
- Safe for testing
Test Scenario Types
| Scenario | Result | Use Case |
|---|---|---|
| PASS (CLEAR) | Verification succeeds | Test successful onboarding |
| FAIL | Verification fails (e.g. KYC Not Found) | Test rejection flows — see tip below |
| REVIEW | Manual review required | Test escalation workflows |
| PEP | Politically Exposed Person match | Test AML screening |
| SANCTION | Sanctions list match | Test AML screening |
| PEP, SANCTION | Both PEP and sanctions match | Test combined AML scenarios |
v2 Testbed Quick Reference
Here are the key test scenarios. For the complete set of v2 testbed payloads (including Medicare, SSN, Aadhaar, Passport, and more), see the UAT Test Data page.| Test Name | Expected Result | Use Case |
|---|---|---|
| JAMES TESTONE | CLEAR (PASS) | Successful verification with driver’s license |
| JUDY TESTTWO | CLEAR (PASS) | Successful verification |
| JENNY TESTEIGHT | FAIL (KYC Not Found) | KYC not found / rejection flow mispell name to trigger KYC not found |
| JAMES G TESTELEVEN | PEP match | PEP screening |
| BRUCE TESTNINETEEN | SANCTION match | Sanctions screening |
| STACY K TESTTWENTY | PEP + SANCTION | Combined AML screening |
PASS Example (JAMES TESTONE) - v2 Format
PASS Example (JAMES TESTONE) - v2 Format
PEP Match Example (JAMES G TESTELEVEN) - v2 Format
PEP Match Example (JAMES G TESTELEVEN) - v2 Format
SANCTION Match Example (BRUCE TESTNINETEEN) - v2 Format
SANCTION Match Example (BRUCE TESTNINETEEN) - v2 Format
AUS-Basic3V-TwoPlus. If you use a workflow that expects an ID document (e.g., AUS-Basic3V-TwoPlusID or AUS-Basic1V-IDOnly), you will receive a BAD_DATA_ID error.DRIVERS_LICENSE (American spelling with underscore), not DRIVERS_LICENCE.Valid Document Types:DRIVERS_LICENSE✅ (correct - American spelling)PASSPORTNATIONAL_ID(used for USA SSN, Aadhaar, China National ID, etc.)NATIONAL_HEALTH_ID(used for Australian Medicare)TAX_IDVISAIMMIGRATIONBIRTH_CERTCITIZENSHIPMARRIAGE_CERTUTILITY_BILLBANK_STATEMENTCONCESSIONPENSIONMILITARY_IDOTHER
| Country | Document Type | Primary ID | Secondary ID | Notes |
|---|---|---|---|---|
| Australia | DRIVERS_LICENSE | License number | Card/document number | Both required |
| Australia | NATIONAL_HEALTH_ID | Medicare number (10 digits) | supplementaryData.reference (1-9), subtype (G/B/Y), nameOnCardLine1 | All required |
| USA | NATIONAL_ID | SSN (9 digits, no dashes) | Not used | Use for Social Security Number |
| India | NATIONAL_ID | Aadhaar (12 digits) | Not used | No dashes in testbed |
| China | NATIONAL_ID | 18-digit ID number | supplementaryData.homeCountryFullName (Chinese characters), Pinyin givenName/familyName on document | homeCountryFullName enables NAME_VALIDATION |
primaryIdentifier- License number (e.g., “283229690”)secondaryIdentifier- Document number / Card number (e.g., “P5403241”)
primaryIdentifier— Medicare card number (10 digits, e.g., “6603984391”)subtype— Card color:G(Green),B(Blue), orY(Yellow)subdivision— State or territory of issue (e.g., “VIC”)expiryDate— Must includeunstructured(YYYY-MM-DD) andtype(“GREGORIAN”)supplementaryData.reference— Individual reference number (1-9)supplementaryData.nameOnCardLine1— Name as printed on the card
NATIONAL_ID document type (NOT TAX_ID):NATIONAL_ID document type (12 digits without dashes):NATIONAL_ID document type (18 digits in production). Provide the name in Pinyin (uppercase) on the document, and the Chinese characters in supplementaryData.homeCountryFullName:- ❌
DRIVERS_LICENCE(British spelling) - ❌
DRIVER_LICENSE(missing S) - ❌ Abbreviations like
DL
- Dates use objects:
{year: "YYYY", month: "MM", day: "DD"} - Address fields:
locality(notsuburborcity),subdivision(notstate),postalCode(notpostcode) - Documents nested by category:
documents.IDENTITY[] - Document ID field:
primaryIdentifier(not idNumber) schemaVersion: 2may be included but is optional (it’s a response field)
Running Your First v2 API Call
Overview: Create Individual Entity (v2)
This walkthrough demonstrates:- Creating an individual entity using v2 API
- Understanding the v2 response
- Saving the entity ID for subsequent requests
Step 1: Select the Create Individual Request (v2)
- Postman
- Bruno
- Expand “Individuals (v2)” folder in left sidebar
- Click “Create Individual”
- Request details appear on right
Step 2: Review the v2 Request
URL:api_key: Your API authentication keyX-Frankie-CustomerID: Your main customer/account IDX-Frankie-CustomerChildID: Optional - used for sub-account isolation when configured by FrankieOneContent-Type: Alwaysapplication/jsonfor v2 API requests
schemaVersion: 2is optional (primarily a response field)- Dates are objects, not strings
- Addresses use
locality,subdivision,postalCode - Email and phone are arrays with type and preference
- All wrapped in
individualobject
Step 3: Send the Request
- Postman
- Bruno
- Click the blue “Send” button (top right)
- Wait for response (usually 1-3 seconds)
- Response appears in bottom panel
Step 4: Review the Response
- Create Individual — returns the individual object
- Create and Execute Workflow — returns
individual,serviceProfile, andworkflowResultin one response
| Field | Importance | Description |
|---|---|---|
status | Critical | The conclusive recommendation — base your business logic on this value |
workflowExecutionState | Critical | Must be COMPLETED for the status to be final |
individual.entityId | Critical | Unique identifier — save this for subsequent requests |
result | Important | Original automated outcome before any manual overrides (useful for auditing) |
issues[] | Important | Flagged issues (e.g., BAD_DATA_ID, PEP, SANCTION). If status is REVIEW, this explains why |
workflowStepResults[] | Reference | Per-step results for KYC, AML, DECISION, etc. |
riskAssessment | Reference | Risk score, risk level, and contributing risk factors |
Step 5: Save the Entity ID
You’ll need theentityId for subsequent requests (document uploads, re-verification, monitoring).
- Postman
- Bruno
- Copy
entityIdfrom response - Go to your environment (click environment dropdown > Edit)
- Update variable:
entityId=abc123-def456-ghi789-jkl012 - Save environment
Executing a Workflow (v2)
What Are Workflows?
Workflows in FrankieOne v2 are pre-configured verification processes that can include:- KYC (Electronic verification)
- IDV (Document verification)
- AML (Screening)
- Risk assessment
Step 6: Execute a Workflow
Select the Request:- Expand “Individual Workflows (v2)” folder
- Click “Execute Workflow”
| Variable | Example Value | Description |
|---|---|---|
entityId | From previous step | Individual’s entity ID |
serviceName | KYC | Service profile name (provided by FrankieOne) |
workflowName | See workflow table below | Workflow name (provided by FrankieOne) |
| Workflow Name | Region | Description |
|---|---|---|
AUS-Basic3V-TwoPlusID | Australia | KYC with ID document verification |
AUS-Basic3V-TwoPlus | Australia | KYC without ID document (name + DOB + address only) |
AUS-Basic1V-IDOnly | Australia | ID document verification only |
USA-Basic1V-OnePlus | USA | US identity verification (SSN) |
GLB-Basic1V-OnePlus | Global | International identity verification (India, China, UK, etc.) |
Viewing Results in the Portal
Why Use the Portal?
| Your API Client Shows | Portal Shows |
|---|---|
| API request and response | Visual representation |
| Technical details | Complete verification details |
| Raw data | Risk assessment with context |
| Single request view | Timeline of all events |
| Technical format | Analyst-friendly review interface |
Accessing the Portal
| Environment | URL |
|---|---|
| UAT | https://portal.uat.frankie.one/login |
| Production | https://portal.frankie.one/login |
Finding Your Individual
Method 1: Search by Name- Click “Entities” in navigation
- Enter customer name in search
- Click on individual to view
- Copy
entityIdfrom your API response - Paste into search bar
- Click on individual
- Click “Entities”
- Sort by “Most Recent”
- Your test individual should be at top
Understanding the Portal View
| Section | What You’ll See |
|---|---|
| Individual Overview | Name, overall status, risk rating, created date |
| Verification Checks | Workflow results, check statuses, timestamps |
| Risk Assessment | Overall score, risk factors, contributing elements |
| Timeline | Chronological view of all events and status changes |
| Documents | Uploaded documents and verification results (if IDV performed) |
Real-Time Updates
The Portal updates in real-time:- Send API request via Postman/Bruno
- Refresh Portal (or wait for auto-refresh)
- See new results immediately
Common Testing Scenarios
Scenario 1: Create Individual with Minimal Data
Objective: Test minimal required fields for v2 individual creation v2 Payload:- Status:
201 Created - Returns
entityId - Individual created successfully
- Testbed result: CLEAR (PASS)
Scenario 2: Create Individual with Document
Objective: Create individual with identity document for verification v2 Payload:- Individual created with document
- Ready for workflow execution
- Document details stored
- Testbed result: CLEAR (PASS)
Scenario 3: Minor (Under 18)
Objective: Create individual under 18 years old v2 Payload:- Must include
UNDER18consent - Age calculated from
dateOfBirth - May require guardian information (check with FrankieOne)
Scenario 4: Individual with Custom Attributes
Objective: Store custom business data with individual v2 Payload:- Store business-specific data
- Track customer segments
- Store account types
- Custom workflow routing
Understanding API Responses
HTTP Status Codes
| Code | Meaning | Action |
|---|---|---|
200 OK | Success | Process response data |
201 Created | Resource created | Save the new resource ID (entityId) |
400 Bad Request | Invalid request | Check request format and required fields |
401 Unauthorized | Authentication failed | Verify API key and Customer ID |
404 Not Found | Resource not found | Verify entity ID exists |
422 Unprocessable Entity | Validation error | Check field formats and required fields |
500 Server Error | Server issue | Retry or contact support |
Common v2 Response Fields
workflowResult object. These provide the final, authoritative outcome of the entire workflow execution. For a full guide on interpreting workflow responses, see Interpreting Workflows v2.
| Field | Importance | Description |
|---|---|---|
status | Critical | The most important field. This is the conclusive recommendation and accounts for any manual overrides. Base your primary business logic on this value. |
workflowExecutionState | Critical | Confirms the workflow’s technical status. Must be COMPLETED for the status to be considered final. |
result | Important | The original, automated outcome of the workflow before any manual changes. Useful for auditing. |
issues[] | Important | An array of problems that may require manual review. If the status is REVIEW, this array contains the specific reasons why. |
| Field | Description |
|---|---|
individual.entityId | Unique identifier — save for subsequent requests (document uploads, re-verification, monitoring) |
workflowResult.workflowStepResults[] | Detailed per-step results for KYC, AML, MATCHLIST, DECISION, etc. |
workflowResult.riskAssessment.riskLevel | Risk level (LOW, MEDIUM, HIGH) |
workflowResult.riskAssessment.riskScore | Numeric risk score |
Common Validation Errors in v2
| Error | Cause | Solution |
|---|---|---|
Invalid date format | Using string instead of object | Use {year, month, day} format |
Unknown field: suburb | Using v1 field names | Use v2 field names (locality, not suburb or city) |
documents must be an object | Using array instead of nested object | Use documents.IDENTITY: [...] structure |
Invalid field value | Incorrect data type or format | Check OpenAPI spec for field requirements |
Best Practices
1. schemaVersion is Optional
Optional in v2:schemaVersion is marked as readOnly in the OpenAPI specification, meaning it’s primarily a response field. While you can include it in requests, it’s not required and will be returned by the API in responses.2. Use Correct v2 Field Names
v2 Uses:locality(notsuburborcity)subdivision(notstate)postalCode(notpostcode)primaryIdentifier(notidNumber)
3. Use Date Objects, Not Strings
Correct v2 Format:4. Structure Documents Correctly
Correct v2 Format:5. Use Environment Variables
Why:- Easy to switch between UAT and Production
- Keep credentials secure
- Reuse across requests
- Save entityId automatically
6. Use Testbed Data Only
7. Check Both API Response and Portal
Complete testing workflow:- Send request in Postman/Bruno
- Check API response
- View in Portal
- Verify both match
- Understand complete picture
8. Version Control (Bruno)
Since Bruno stores collections as files:9. Test Edge Cases
Don’t just test the happy path:- Missing optional fields
- Invalid data formats
- Different countries
- Various document types
- Minors vs adults
- Multiple addresses
Troubleshooting
Authentication Error (401)
Problem:Unauthorized or Invalid API key
Solutions:
| Check | Action |
|---|---|
| API key | Verify it’s correct and not expired |
| Customer ID | Confirm it matches your account |
| Customer Child ID | If you have sub-accounts, verify CustomerChildID is correct |
| Environment | Ensure correct environment is selected |
| Headers | Verify api_key, X-Frankie-CustomerID, and X-Frankie-CustomerChildID (if applicable) headers are present |
| Header case | Use exact header names: X-Frankie-CustomerID (not x-frankie-customer-id) |
- Using CustomerChildID when you don’t have sub-accounts configured
- Using wrong CustomerChildID value
- Omitting CustomerChildID when you have sub-accounts
- Typos in header name (must be exactly
X-Frankie-CustomerChildID)
Date Format Error
Problem:Invalid date format or date validation errors
Solutions:
| Check | Action |
|---|---|
| Use objects | Dates must be objects: {year, month, day} |
| Not strings | Don’t use "1990-01-15" (that’s v1 format) |
| String values | Year, month, day are strings: "1990", not 1990 |
| Padding | Month and day should be zero-padded: "01", not "1" |
Field Name Error
Problem:Unknown field or field not recognized
Solutions:
| v1 Field (Wrong) | v2 Field (Correct) |
|---|---|
suburb | locality |
city | locality |
state | subdivision |
postcode | postalCode |
document | documents |
idNumber | primaryIdentifier |
region | subdivision |
emailAddress | emailAddresses (array) |
phoneNumber | phoneNumbers (array) |
Document Structure Error
Problem:Invalid document structure or validation errors
Solutions:
Correct v2 Structure:
- Using
documentinstead ofdocuments - Not nesting under category (
IDENTITY) - Using array instead of object for
documents - Using
idNumberinstead ofprimaryIdentifier
Entity Not Found (404)
Problem:Entity not found
Solutions:
| Check | Action |
|---|---|
| Entity ID | Verify it’s correct (copy/paste carefully) |
| Environment | Confirm you’re using the same environment where entity was created |
| Entity creation | Check that the create request succeeded |
| URL format | Ensure URL is /v2/individuals/{entityId} |
No Results in Portal
Problem: Can’t find individual in Portal Solutions:| Check | Action |
|---|---|
| Environment | Verify you’re logged into the correct Portal environment (UAT vs Production) |
| Customer ID | Confirm it matches your API credentials |
| Search | Try searching by entity ID instead of name |
| Timing | Wait a few seconds and refresh |
| Filters | Check if any filters are applied in Portal |
Bruno-Specific Issues
Collection Not Loading:- Ensure the folder contains a valid
bruno.jsonfile - Check file permissions on the collection folder
- Verify you’re opening the correct folder
- Bruno supports Postman Collection v2.1 format
- If import fails, try exporting from Postman as Collection v2.1
- Check for special characters in collection name
- Ensure environment is activated (check dropdown)
- Verify variable syntax:
{{variableName}} - Check for typos in variable names
Getting Help
FrankieOne Support:- Contact your FrankieOne representative
- Email: [email protected]
- Include: Entity ID, full request/response, error messages, screenshots
- v2 API Documentation: https://docs.frankieone.com
- OpenAPI Specification: Request from FrankieOne
- Testbed Data Guide: https://docs.frankieone.com/docs/test-data
Next Steps
After Testing v2 APIs
-
Understand the v2 APIs
- Review all v2 endpoints
- Test various scenarios
- Document requirements
-
Plan Your Integration
- Determine which v2 APIs you need
- Design workflow
- Plan error handling
- Consider migration from v1 if applicable
-
Review Documentation
- v2 API reference
- Integration guides
- Security guidelines
- Best practices
-
Start Development
- Use your test collection as reference
- Implement in your application
- Follow v2 payload structure
- Handle v2 responses correctly
-
Move to Production
- Complete UAT testing
- Get production credentials
- Update environment variables
- Deploy
FAQs
General
Should I use v1 or v2?
Should I use v1 or v2?
- Better structure for complex scenarios
- Active development and support
- Clearer entity type separation
- More explicit field names
Can I mix v1 and v2?
Can I mix v1 and v2?
Do I need to pay for Postman or Bruno?
Do I need to pay for Postman or Bruno?
Can I use real customer data for testing?
Can I use real customer data for testing?
v2 Specific
What's different in v2 compared to v1?
What's different in v2 compared to v1?
- Date format: Objects
{year, month, day}instead of strings"YYYY-MM-DD" - Field names:
locality(notsuburborcity),subdivision(notstate),postalCode(notpostcode) - Documents: Nested by category
documents.IDENTITY[] - Entity type: Implied by endpoint (
/individualsvs/organizations) - Schema version: Optional field
schemaVersion: 2(primarily a response field) - Email/Phone: Arrays instead of single values
Is schemaVersion required?
Is schemaVersion required?
schemaVersion is optional in v2 API requests. It’s marked as readOnly in the OpenAPI specification, meaning it’s primarily a response field returned by the API.You can include "schemaVersion": 2 in your request if you want, but it’s not required. The API will return this field in responses.Why do dates use objects instead of strings?
Why do dates use objects instead of strings?
- More explicit structure
- Better validation
- Clearer parsing
- Support for partial dates
Can I include multiple documents?
Can I include multiple documents?
Tool-Specific
Can I share my collection with my team?
Can I share my collection with my team?
Can I switch from Postman to Bruno?
Can I switch from Postman to Bruno?
Which tool is better for CI/CD?
Which tool is better for CI/CD?
- Postman: Newman CLI for running collections
- Bruno: Bruno CLI (
bru run) for running collections
How do I auto-save entityId?
How do I auto-save entityId?
FrankieOne-Specific
What's the difference between UAT and Production?
What's the difference between UAT and Production?
- UAT: Testing environment with testbed data, safe for experimentation
- Production: Live environment with real customers, use only after thorough testing
What is Customer Child ID and do I need it?
What is Customer Child ID and do I need it?
X-Frankie-CustomerChildID) is for sub-account isolation within your main account.You need it if:- You have multiple brands or business units
- You’re a reseller with multiple clients
- FrankieOne has configured sub-accounts for you
- You have a single, unified account
- FrankieOne hasn’t mentioned sub-accounts to you
How long do test entities stay in UAT?
How long do test entities stay in UAT?
What workflows are available?
What workflows are available?
- See available workflows
- Understand what each workflow does
- Request custom workflows
AUS-Basic1V-IDOnly, AUS-Enhanced-KYC-AMLCan I configure workflows via API?
Can I configure workflows via API?
Summary
Key Takeaways
| Principle | Details |
|---|---|
| Use v2 for new integrations | Current recommended version with better structure |
| Use correct v2 format | Objects for dates, correct field names |
| Choose your tool | Postman for cloud sync; Bruno for Git integration |
| Use testbed data | Pre-configured scenarios with predictable results |
| Check both views | API response + Portal for complete understanding |
| Test thoroughly | Various scenarios including edge cases |
v2 Quick Reference
Minimal v2 Individual:Getting Started Checklist
Additional Resources
FrankieOne
| Resource | URL |
|---|---|
| Website | https://frankieone.com |
| v2 API Documentation | https://docs.frankieone.com |
| Testbed Data | https://docs.frankieone.com/docs/test-data |
| Support | [email protected] |
Postman
| Resource | URL |
|---|---|
| Download | https://www.postman.com/downloads |
| Learning Center | https://learning.postman.com |
| Documentation | https://learning.postman.com/docs |
Bruno
| Resource | URL |
|---|---|
| Download | https://www.usebruno.com/downloads |
| Documentation | https://docs.usebruno.com |
| GitHub | https://github.com/usebruno/bruno |
Document Version: 3.1 (v2 Focused - Updated)
Last Updated: February 2026
API Version: v2
Audience: Developers and technical teams evaluating or integrating FrankieOne v2 APIs