Rejects a pending referral. Only the recipient firm can reject. Run in API Explorer
Ask AI
A rejection reason is required. Cloned client data will be cleaned up.
POST
/api/v1/referrals/{referral_uuid}/reject
curl \
--request POST 'https://api.plannrcrm.com/api/v1/referrals/6ff8f7f6-1eb3-3525-be4a-3932c805afed/reject' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"rejection_reason":"Unable to take on new clients at this time."}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"rejection_reason": "Unable to take on new clients at this time."
}
Response examples (200)
{
"note": "Client needs help with retirement planning.",
"uuid": "ac6ac96d-cd94-4e1c-9374-da46b5b7728d",
"status": "pending",
"clients": [
{
"name": "John Doe",
"uuid": "client-uuid-1"
}
],
"direction": "sent",
"connection": {
"uuid": "abc-123"
},
"created_at": "2026-01-20T17:51:29+00:00",
"expires_at": "2026-04-20T17:51:29+01:00",
"updated_at": "2026-01-20T17:51:29+00:00",
"advice_type": "investments",
"sender_firm": {
"name": "Sender Firm Name",
"uuid": "abc-123"
},
"shared_data": [
"basic_details",
"contact_details"
],
"sla_deadline": "2026-02-28",
"cloned_clients": [
{
"name": "John Doe",
"uuid": "cloned-uuid-1"
}
],
"recipient_firm": {
"name": "Recipient Firm Name",
"uuid": "def-456"
},
"sender_account": {
"name": {
"example": "Gareth Thompson",
"collection": false,
"description": "Name"
},
"role": {
"example": "client",
"collection": false,
"description": "Account role"
},
"type": {
"example": "client",
"collection": false,
"description": "Account type"
},
"uuid": {
"example": "a4890f86-e45b-498c-b1d5-b0d88eb0c6f3",
"collection": false,
"description": "The UUID of the resource."
},
"email": {
"example": "gareth@codepotato.co.uk",
"collection": false,
"description": "(Deprecated - Please use the primary email of the account instead). The email of the account."
},
"last_name": {
"example": "Thompson",
"collection": false,
"description": "Last name"
},
"photo_url": {
"example": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"collection": false,
"description": "The photo URL of the client"
},
"created_at": {
"example": "2026-01-20T17:51:29+00:00",
"collection": false,
"description": "The timestamp of when the resource was created."
},
"first_name": {
"example": "Gareth",
"collection": false,
"description": "First name"
},
"updated_at": {
"example": "2026-01-20T17:51:29+00:00",
"collection": false,
"description": "The timestamp of when the resource was updated."
},
"external_references": {
"example": "App\\Http\\Resources\\ExternalReferenceResource",
"collection": true,
"description": "The external references that have been added to the client."
}
},
"duration_months": 3,
"rejection_reason": "Unable to take on new clients.",
"recipient_account": {
"name": {
"example": "Gareth Thompson",
"collection": false,
"description": "Name"
},
"role": {
"example": "client",
"collection": false,
"description": "Account role"
},
"type": {
"example": "client",
"collection": false,
"description": "Account type"
},
"uuid": {
"example": "66e3ec21-8ee5-4cb6-bebf-ef049bd76602",
"collection": false,
"description": "The UUID of the resource."
},
"email": {
"example": "gareth@codepotato.co.uk",
"collection": false,
"description": "(Deprecated - Please use the primary email of the account instead). The email of the account."
},
"last_name": {
"example": "Thompson",
"collection": false,
"description": "Last name"
},
"photo_url": {
"example": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"collection": false,
"description": "The photo URL of the client"
},
"created_at": {
"example": "2026-01-20T17:51:29+00:00",
"collection": false,
"description": "The timestamp of when the resource was created."
},
"first_name": {
"example": "Gareth",
"collection": false,
"description": "First name"
},
"updated_at": {
"example": "2026-01-20T17:51:29+00:00",
"collection": false,
"description": "The timestamp of when the resource was updated."
},
"external_references": {
"example": "App\\Http\\Resources\\ExternalReferenceResource",
"collection": true,
"description": "The external references that have been added to the client."
}
}
}