Add References


    # Here is a curl example
    curl \
    -X POST "http://localhost:8888/api/Objects/AddReferencesToFolder" \
    -H "Content-Type: application/json" \
    -d '{
            "object_id": 123,
            "record_id": 123,
            "source_object_id":123,
            "source_record_id":123,
            "folder_id":123,
        }'

This method allows you add references in different records.

To add references, you need to make a POST call to the following url: :
http://localhost:8888/api/Objects/AddReferencesToFolder



    Result example :
    [
        {
            "Success": "boolean",
            "Message": "string",
            "Data": object,
            "CustomAction": Dictionary<object, object> ,
            "CustomAttributes":Dictionary<object, object>
        }
    ]

From Body Parameters

Field Parameter Type Type Description
object_id body long Object Id.
record_id body long Record Id. You can get from another method (http://localhost:8888/api/Objects/ObjectRecords).
source_object_id body long Source Object Id.
source_record_id body long Source Record Id.
folder_id body long Folder Id. You can get from another method (http://localhost:8888/api/Objects/ReferenceFolder)
Authorization header string Add Authorization header token