Reltio Connect

 View Only
  • 1.  Can we Create Entity more than 1 entity if yes how many we can create with one request

    Posted 09-28-2022 09:54
    Hi ,

    post  https://url/entities

    how many entity objects we can pass to body. Can we pass more than one at a time if yes how many max can be created using the post method

    Regards,
    Nitin Tugave


    ------------------------------
    Nitin Tugave
    eaton
    ------------------------------


  • 2.  RE: Can we Create Entity more than 1 entity if yes how many we can create with one request

    Reltio Partner
    Posted 09-29-2022 07:21
    Hi Nitin,

    Yes, you can create many entities with a single POST API call. The Reltio Create Entity API accepts JSON array as a body meaning that you can pass many entity bodies. For more details and examples, you can check Reltio's documentation: Create Entities (reltio.com)

    To achieve the best performance and reliability during entities/relations data loads, please check Reltio's best practices documentation: Best Practices for Loading Data with ROCS Utilities (reltio.com)

    Hope this helps!

    ------------------------------
    Angel Paunov
    Ulpia Tech
    ------------------------------



  • 3.  RE: Can we Create Entity more than 1 entity if yes how many we can create with one request

    Posted 10-03-2022 19:06
    Hi Nitin,

    Depending on your use case, you may also find the following helpful to create entities and relations in one call:

    https://docs.reltio.com/integrations/createentitiesandrelations.html

    Best regards,
    Paul

    ------------------------------
    Paul Anderson
    HP
    CO
    ------------------------------



  • 4.  RE: Can we Create Entity more than 1 entity if yes how many we can create with one request

    Posted 10-04-2022 03:37
    Hi Paul,

    Thanks for the information and this is help full .

    Can you please help us with below information

     What is the API version for entity and where can we find the information for it 




    regards,
    Nitin Tugave

    ------------------------------
    Nitin Tugave
    eaton
    ------------------------------



  • 5.  RE: Can we Create Entity more than 1 entity if yes how many we can create with one request

    Reltio Partner
    Posted 10-04-2022 10:58
    Hi Nitin,

    Here is Reltio's documentation on how to use the Create Entities API: https://docs.reltio.com/entitiesapi/createentities.html

    Request

    POST https://{{environment}}.reltio.com/reltio/api/{{Tenant Id}}/entities
    Sample Body
    {
        "type": "configuration/entityTypes/Individual",
        "attributes": {
            "FirstName": [
                {
                    "value": "John"
                }
            ],
            "LastName": [
                {
                    "value": "Smith"
                }
            ]
        },
        "crosswalks": [
            {
                "type": "configuration/sources/FB",
                "value": "fb_123"
            }
        ]
    }


    Hope this helps!

    ------------------------------
    Angel Paunov
    Ulpia Tech
    ------------------------------