curl --request POST \
--url https://api.example.com/objects/associations \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"object1": {
"ids": [
1
],
"label": "<string>",
"multiplicity": "ONE",
"child": true
},
"object2": {
"ids": [
1
],
"label": "<string>",
"multiplicity": "ONE",
"child": true
}
}
'