This function allows you to add syndication to a tracked deal.  You can also add the syndication fees in the same step. This is for our users who are using our multi fee syndication feature.


Function:
Name: syndication/add

Type: POST

JSON Body: 


You must provide dealId or dealName are required and investors with an array.

An amount or percent must be provided for each investor.

An amount or percent must be provided for each fee.


Example

{    

    "dealName":"DealTest1",

    "investors" : [

        {

            "company":"Investor A",

            "percent":20,

            "feesCollectionType":"Concurrent",

            "fees" : [

                {

                        "name" : "Management",

                        "percent" : 5,

                        "feeOffPayback": true,

                        "frontEnd":false

                },

                {

                        "name" : "Commission",

                        "amount": 100,

                        "feeOffPayback": false,

                        "frontEnd":true

                }            

            ]

        },

        {

            "company":"Investor B",

            "amount":8000,

            "feesCollectionType":"Concurrent",

            "fees" : [

                {

                        "name" : "Management",

                        "percent" : 5,

                        "feeOffPayback": true,

                        "frontEnd":false

                },

                {

                        "name" : "Commission",

                        "amount": 100,

                        "feeOffPayback": false,

                        "frontEnd":false

                }            

            ]

        }

    ]

}