I want to learn how to create custom connectors that use the C# code component. I'm starting by trying to create a custom connector that doesn't really call any API, but instead just takes a single input like Name and then passes that Name parameter to the C# code to form & output a dynamic "Hello, {Name}" string.
So far even with chat gpt I'm having trouble. I've created the Request piece in the Definition stage with a required Name header / input. But I can't seem to get the C# code to properly pull that Name data in & add it to the string. How should the C# be set up? Do I have to also set up the Response in the Definition a certain way?