Body
-
The UUIDs of the accounts who should own the goal. These must only be client accounts.
-
The goal's name.
-
The goal's description.
-
The goal's target amount.
-
The goal's progress as a percentage.
-
The goal's timeframe.
-
The goal's deadline as a specific date.
-
The goal's priority on a scale from 1 to 5.
-
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.
PUT
/api/v2/goals/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/goals/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"account_uuids":["c6195b35-5447-4cc2-b7c8-b9d1b8d2ec9a","8544b50f-14bc-43f5-83ed-696fda813e33"],"name":"Reduced Mileage","description":"Reduce the amount of gas spent yearly.","target_amount":5000,"progress":68,"timeframe":"Within the year.","complete_goal_by":"2026-12-04T22:09:17+00:00","priority":4,"shown_on_circles":false,"visible_to_circles_uuids":["596720a3-c745-484b-b091-db17e0536512","5e9837d8-320c-4133-8941-006b724c2613"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"account_uuids": [
"c6195b35-5447-4cc2-b7c8-b9d1b8d2ec9a",
"8544b50f-14bc-43f5-83ed-696fda813e33"
],
"name": "Reduced Mileage",
"description": "Reduce the amount of gas spent yearly.",
"target_amount": 5000,
"progress": 68,
"timeframe": "Within the year.",
"complete_goal_by": "2026-12-04T22:09:17+00:00",
"priority": 4,
"shown_on_circles": false,
"visible_to_circles_uuids": [
"596720a3-c745-484b-b091-db17e0536512",
"5e9837d8-320c-4133-8941-006b724c2613"
]
}
Response examples (200)
{
"name": "Reduced Mileage",
"uuid": "442c496d-3b0c-401b-b83f-461e7ef50713",
"priority": "4",
"progress": "68",
"timeframe": "Within the year.",
"created_at": "2025-12-04T22:09:17+00:00",
"updated_at": "2025-12-04T22:09:17+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": "b3cde65e-059d-4206-9d7b-83c6f7a899d4",
"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": "2025-12-04T22:09:17+00:00",
"first_name": "Gareth",
"updated_at": "2025-12-04T22:09:17+00:00",
"with_login": true,
"inactive_at": "2025-12-04",
"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": "2025-12-04T22:09:17+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-12-04T22:09:17+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-12-04T22:09:17+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-12-04T22:09:17+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": "2026-12-04T22:09:17+00:00",
"shared_owner_type": "individual"
}