POST
/
api
/
end_user_entities
/
{entity_heron_id}
/
attributes
/
{attribute_heron_id}
/
clone
curl --request POST \
  --url https://app.herondata.io/api/end_user_entities/{entity_heron_id}/attributes/{attribute_heron_id}/clone \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "attribute_name": "<string>"
}'
{
  "attribute_description": "<string>",
  "attribute_name": "<string>",
  "attribute_type": "float",
  "display_order": 123,
  "heron_id": "<string>",
  "reconciliation_config": {},
  "reconciliation_strategy": "sort_order"
}

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

entity_heron_id
string
required
attribute_heron_id
string
required

Body

application/json
attribute_name
string
required

Response

200 - application/json
OK
attribute_description
string
attribute_name
string
attribute_type
enum<string>
Available options:
float,
int,
decimal,
string,
date,
datetime,
bool
display_order
integer
heron_id
string
reconciliation_config
object
reconciliation_strategy
enum<string>
Available options:
sort_order,
llm,
comparison,
concatenate_lists