These docs are for v20.3.44. Click to read the latest docs for v20.3.186.

Discussions

Ask a Question
Back to All

Setting program option to 'Register by default' through REST

How do you update program options (event function) to 'Register by default' after already posting via REST? I would assume some type of PUT action, but what object/property do we need to look at.

For example, if you were adding an event through staff site, you can edit you registration option and add whatever program options you need. One of the options listed there that you can check next to the option is to 'Register by Default'.

We have something like this going in C# which we believe corresponds to Register By default.

EventRelatedFunctionData evFuncData = new EventRelatedFunctionData
{
IsAutoEnroll = true
};

Thanks,

Julie