Get all the provider feed logs for a given plan Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
GET /api/v1/plans/{plan_uuid}/provider-feed-logs

Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • plan_uuid string Required

    uuid The UUID of the group scheme plan.

Query parameters

  • filter[sub_account_uuids] string

    Filter by a comma separated list of sub account UUIDs.

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at, level]. Negative sign to denote DESC. Defaults to '-created_at'.

  • per_page integer

    Number of results to return with pagination (Default 15. Max 500).

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was updated.

    • sub_account object

      The sub-account if the log was added to the sub-account level.

      Hide sub_account attributes Show sub_account attributes object
      • uuid string
      • created_at string
      • updated_at string
      • name string
      • policy_number string
      • latest_valuation string
      • is_main_account boolean
      • active_portfolio string
      • statistics object
        Hide statistics attribute Show statistics attribute object
        • recent_growth integer
    • level string

      The level of the log. Available options: info, warning and error

    • message string

      The message of the log

    • context object

      Key-value store for additional information about the log.

      Hide context attribute Show context attribute object
      • additional string
GET /api/v1/plans/{plan_uuid}/provider-feed-logs
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/provider-feed-logs' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "uuid": "eab55133-5402-4e8e-9dd9-3df50a6dfa50",
  "created_at": "2026-06-08T16:08:03+01:00",
  "updated_at": "2026-06-08T16:08:03+01:00",
  "sub_account": {
    "uuid": "03f2c268-1ddf-4770-aae3-9d60d55c8f7c",
    "created_at": "2026-06-08T16:08:03+01:00",
    "updated_at": "2026-06-08T16:08:03+01:00",
    "name": "John's ISA",
    "policy_number": "AVI-4837",
    "latest_valuation": "App\\Http\\Resources\\Plans\\ValuationResource",
    "is_main_account": false,
    "active_portfolio": "App\\Http\\Resources\\Plans\\PortfolioResource",
    "statistics": {
      "recent_growth": 100
    }
  },
  "level": "info",
  "message": "Successfully updated valuation and holdings from provider feed.",
  "context": {
    "additional": "info"
  }
}