/customSource/data/{id}

Upload data for a custom source.

Resource URL

/v2/applications/{communityApiKeyName}/customSource/data/{id}
Note:

Use the appropriate regional endpoint to ensure that you comply with your organization's privacy policy, and applicable laws and regulations. For details about the available regional endpoints, and how to identify your organization's region, see API Access.

Available methods

Method Description
PUT Upload or update data.
Example

This example PUT body contains two records in JSON list format that match the fields defined in the policy schema.

{
    "$id": "/schemas/policy",
    "items": [ 
   {
      "Email":"john.doe@alida.com",
      "Owner First Name":"JOHN",
      "Owner Last Name":"DOE",
      "Policy Number":"W2XXXX3332",
      "Product Name":"Wealth Insurance",
      "Premium Currency":"USD",
      "Premium Amount":150000.00,
      "Payment Mode":"Annual",
      "Sum Insured":2300000.00,
      "Transaction ID":"W2E0013332_2"
   },
   {
      "Email":"bob.ristea@alida.com",
      "Owner First Name":"BOB",
      "Owner Last Name":"RISTEA",
      "Policy Number":"W2XXXX3333",
      "Product Name":"Car Insurance",
      "Premium Currency":"USD",
      "Premium Amount":1000000.00,
      "Payment Mode":"Annual",
      "Sum Insured":230000000.00,
      "Transaction ID":"W2E0013332_3"
   }
  ]
}