Headers

Path parameters

application/json

Body Required

  • associations array[string] Required

    Associations to be created. Each association should have adviser_uuid and SECCL node_ids.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
POST /api/v1/addons/seccl/{addon}/associate-node
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/addons/seccl/addon/associate-node' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --data '{"associations":[{"node_ids":{"type":"array","example":["1234","321"],"required":true,"description":"SECCL Node IDs"},"adviser_uuid":{"type":"string","example":"1752dc03-0b03-4453-9dfd-6dadc0a533e0","required":true,"description":"Adviser UUID"}}]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "associations": [
    {
      "node_ids": {
        "type": "array",
        "example": [
          "1234",
          "321"
        ],
        "required": true,
        "description": "SECCL Node IDs"
      },
      "adviser_uuid": {
        "type": "string",
        "example": "1752dc03-0b03-4453-9dfd-6dadc0a533e0",
        "required": true,
        "description": "Adviser UUID"
      }
    }
  ]
}
Response examples (200)
{
  "type": "provider_statement_mapping",
  "uuid": "bf965e75-52eb-46d5-bf5d-c89a4b1acfe1",
  "created_at": "2025-04-02T13:27:59+01:00",
  "updated_at": "2025-04-02T13:27:59+01:00",
  "return_json": {
    "key_1": "value_1",
    "key_2": "value_2"
  },
  "lookup_value": "zAbWeFVJ:Bloggs J",
  "return_float": 70.35,
  "return_string": "Consectetur officia labore",
  "lookupable_type": "provider",
  "lookupable_uuid": "031110ca-1d96-4ce9-9e2c-180b10d7295f",
  "returnable_type": "plan",
  "returnable_uuid": "8ec31660-34c2-438a-b4a9-b02d3675dcf2",
  "lookupable_value": "J Bloggs Plan",
  "returnable_value": "example"
}