curl --request PUT \
--url https://app.herondata.io/api/end_users/{end_user_heron_id}/entities/values/bulk \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"values": [
{
"attribute_name": "<string>",
"entity_name": "<string>",
"value": "<unknown>"
}
]
}
'[
{
"attribute_name": "<string>",
"entity_name": "<string>",
"success": true,
"error": null
}
]Save multiple entity attribute values in a single request. Each item specifies the entity name, attribute name, and value to set. If an API source doesn’t exist for an attribute, one will be created.
curl --request PUT \
--url https://app.herondata.io/api/end_users/{end_user_heron_id}/entities/values/bulk \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"values": [
{
"attribute_name": "<string>",
"entity_name": "<string>",
"value": "<unknown>"
}
]
}
'[
{
"attribute_name": "<string>",
"entity_name": "<string>",
"success": true,
"error": null
}
]Documentation Index
Fetch the complete documentation index at: https://docs.herondata.io/llms.txt
Use this file to discover all available pages before exploring further.
The Heron ID of the end user
List of entity attribute values to save
Show child attributes
Was this page helpful?