latestOpenAPI 3.0.12026-08-0852621.9 KB
9a5329a23c39
Referrals
Creates a referral
This creates new referrals. The response will contain an identifier and a unique personalized link to an application flow. Many fields are optional and when they're provided they'll prefill the application flow for Brex. You should handle and store these references securely as they contain sensitive information about the referral.
post/v1/referrals
Request body
Example request
{
"referral_code": "partner_abc123",
"applicant": {
"last_name": "Smith",
"first_name": "Jane",
"email": "jane.smith@example.com"
},
"business": {
"legal_name": "Acme Corporation",
"employer_identification_number": "123456789",
"website_url": "https://www.acmecorp.com",
"activity_description": "Software as a Service platform for project management",
"incorporation_year": 2023,
"incorporation_state": "CA",
"beneficial_owners": [
{
"ownership_percentage": 25
}
]
}
}Response
Success
Example response
{
"id": "a1b2c3d4e5f6g7",
"referral_signup_url": "https://brex.com/signup?pref_token=a1b2c3d4e5f6g7"
}