Body
-
The UUIDs of the accounts who should own the goal. These must only be client accounts.
-
The goal's name.
Maximum length is
255. -
The goal's description.
Maximum length is
5000. -
The goal's target amount.
Minimum value is
0. -
The goal's progress as a percentage.
Minimum value is
0, maximum value is100. -
The goal's timeframe.
Maximum length is
255. -
The goal's deadline as a specific date.
-
The goal's priority on a scale from 1 to 5.
Minimum value is
1, maximum value is5. -
Determines if goal should be shown on a circle.
-
Circles UUIDs that can view the goal when filtering goals by circles. Leaving blank means the goal will be visible for all circles which contains the goal owners.
POST
/api/v2/goals
curl \
--request POST 'https://api.plannrcrm.com/api/v2/goals' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"account_uuids":["09f8c0f5-a634-482b-a225-4be1de981e6b","cc24c3d6-78d6-4bec-9fcb-7384b4f6c882","e35e003e-29d7-45ad-9db7-56de5a0094a0"],"name":"Reduced Mileage","description":"Reduce the amount of gas spent yearly.","target_amount":5000,"progress":68,"timeframe":"Within the year.","complete_goal_by":"2027-01-16","priority":4,"show_on_circles":false,"visible_to_circles_uuids":["c0874464-31c5-4727-bb63-12cbb38b0d35","ffb3f6fd-95d5-4cfd-8224-70fa1aaf7f60","7973aacb-626e-42aa-bfbf-a4d9de0eda7b"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"account_uuids": [
"09f8c0f5-a634-482b-a225-4be1de981e6b",
"cc24c3d6-78d6-4bec-9fcb-7384b4f6c882",
"e35e003e-29d7-45ad-9db7-56de5a0094a0"
],
"name": "Reduced Mileage",
"description": "Reduce the amount of gas spent yearly.",
"target_amount": 5000,
"progress": 68,
"timeframe": "Within the year.",
"complete_goal_by": "2027-01-16",
"priority": 4,
"show_on_circles": false,
"visible_to_circles_uuids": [
"c0874464-31c5-4727-bb63-12cbb38b0d35",
"ffb3f6fd-95d5-4cfd-8224-70fa1aaf7f60",
"7973aacb-626e-42aa-bfbf-a4d9de0eda7b"
]
}
Response examples (201)
{
"name": "Reduced Mileage",
"uuid": "e47d560c-e4cf-4f9c-8de0-a2ba7a60a17a",
"priority": "4",
"progress": "68",
"timeframe": "Within the year.",
"created_at": "2026-01-16T13:10:24+00:00",
"updated_at": "2026-01-16T13:10:24+00:00",
"description": "Reduce the amount of gas spent yearly.",
"shared_owner": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "b4b5c2a6-2770-4e7a-b84e-31617afb2f4b",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"circles": "App\\Http\\Resources\\CircleResource",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"created_at": "2026-01-16T13:10:24+00:00",
"first_name": "Gareth",
"updated_at": "2026-01-16T13:10:24+00:00",
"with_login": true,
"inactive_at": "2026-01-16",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2026-01-16T13:10:24+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-01-16T13:10:24+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-01-16 13:10:24",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-01-16T13:10:24+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-01-16T13:10:24+00:00"
},
"target_amount": {
"amount": {
"example": "4000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£40.00",
"description": "Money amount formatted with currency"
}
},
"complete_goal_by": "2027-01-16T13:10:24+00:00",
"shared_owner_type": "individual"
}