You are here:
Orchestration Item Definition Attributes Encoding Style
In the Orchestration Item Definition screen, choose whether to produce flat or structured JSON for attributes.
"In the "Orchestration Item Definition screen, choose which encoding style you want your payload to be. You can choose from None, Flat, or Structure.
A flat encoding style looks like this:
{
"id": "a1f3i000000UcNXAA0",
"attrs": {
"Call forward no": "+123456789",
"Billing code": "VLO_CALL_FWD"
}
}A structured encoding style looks like this:
{
"id": "a1f3i000000UcNXAA0",
"attrs": [
{
"attrCode": "Call forward no",
"value": "+123456789",
"attrName": "Call forward no"
},
{
"attrCode": "VLO_BILLING_CODE",
"value": "VLO_CALL_FWD",
"attrName": "Billing code"
}
]
}
