POST
/
api
/
end_users
/
{end_user_heron_id}
/
entities
/
{entity_heron_id}
curl --request POST \
  --url https://app.herondata.io/api/end_users/{end_user_heron_id}/entities/{entity_heron_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "attribute_heron_id": "<string>",
  "source_heron_id": "<string>",
  "value": "<any>"
}'
{
  "heron_id": "<string>",
  "value": "<any>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

end_user_heron_id
string
required
entity_heron_id
string
required

Body

application/json
attribute_heron_id
string
required
source_heron_id
string
required
value
any
required

Response

200 - application/json
OK
heron_id
string
value
any