Discussions

Ask a Question
Back to All

create an application via API: multiple custom options

Hello, I am trying to create an application via API and I am failing to capture multiple custom options for a custom attribute. The endpoint is https://api.personio.de/v1/recruiting/applications. I have tried these three possibilities, but none have been successful:

{
"id": "custom_attribute_1950854",
"value": [
"custom_option_14773",
"custom_option_14775",
"custom_option_14777"
]
}

{
"id": "custom_attribute_1950854",
"value": "custom_option_14773,custom_option_14775,custom_option_14777"
}

{
"id": "custom_attribute_1950854",
"value": "custom_option_14773"
},
{
"id": "custom_attribute_1950854",
"value": "custom_option_14775"
},
{
"id": "custom_attribute_1950854",
"value": "custom_option_14777"
}

What is the correct syntax?

Best regards, Uli