Creates a new referral connection request to another adviser using their referral code. Run in API Explorer
Ask AI
An email notification will be sent to the recipient with accept/deny links.
POST
/api/v1/referral-connections
curl \
--request POST 'https://api.plannrcrm.com/api/v1/referral-connections' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"adviser_key":"ABC12345"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"adviser_key": "ABC12345"
}
Response examples (200)
{
"uuid": "dfb3ccd0-10cc-4a09-978c-3368d50f1fe4",
"direction": "sent",
"status": "pending",
"sender_firm": {
"uuid": "abc-123",
"name": "Sender Firm Name"
},
"recipient_firm": {
"uuid": "def-456",
"name": "Recipient Firm Name"
},
"sender_account": {
"uuid": "e8c37251-fe2a-46ac-b900-e7859ef1bae9",
"created_at": "2026-07-22T14:08:40+01:00",
"updated_at": "2026-07-22T14:08:40+01:00",
"type": "client",
"role": "client",
"first_name": "Gareth",
"last_name": "Thompson",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"external_references": {
"uuid": "171d5ffa-127a-487b-b548-09c3dc7d9a32",
"created_at": "2026-07-22T14:08:48+01:00",
"updated_at": "2026-07-22T14:08:48+01:00",
"third_party": "nucleus",
"reference": "AB123456"
}
},
"recipient_account": {
"uuid": "3ddeb21b-9a0a-46c6-8c0a-36eb0ca10d08",
"created_at": "2026-07-22T14:08:40+01:00",
"updated_at": "2026-07-22T14:08:40+01:00",
"type": "client",
"role": "client",
"first_name": "Gareth",
"last_name": "Thompson",
"name": "Gareth Thompson",
"email": "gareth@codepotato.co.uk",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"external_references": {
"uuid": "171d5ffa-127a-487b-b548-09c3dc7d9a32",
"created_at": "2026-07-22T14:08:48+01:00",
"updated_at": "2026-07-22T14:08:48+01:00",
"third_party": "nucleus",
"reference": "AB123456"
}
},
"created_at": "2026-07-22T14:08:40+01:00",
"updated_at": "2026-07-22T14:08:40+01:00",
"expires_at": "2026-08-21T14:08:40+01:00"
}